Merge fort-nix/nix-bitcoin#553: pkgs: add lnd 0.15.2
cf836b5d3b
pkgs: add lnd 0.15.2 (Erik Arvstedt) Pull request description: ACKs for top commit: jonasnick: ACKcf836b5d3b
Tree-SHA512: 499cf4989f432946e0ec476cb0c22975614f05e8958c616a5897026098613dd7a20be83e144defdf19b0bf86c3cbd2f6cabb8397d40b1e3bcbda96d9b5e12860
This commit is contained in:
commit
9fc05e384c
@ -37,5 +37,10 @@ let self = {
|
||||
|
||||
pinned = import ./pinned.nix pkgs pkgsUnstable;
|
||||
|
||||
# TODO-EXTERNAL:
|
||||
# Remove this when https://github.com/NixOS/nixpkgs/pull/195337 is available in the
|
||||
# nixpkgs-unstable channel
|
||||
lnd = pkgsUnstable.callPackage ./lnd-0.15.2.nix {};
|
||||
|
||||
modulesPkgs = self // self.pinned;
|
||||
}; in self
|
||||
|
40
pkgs/lnd-0.15.2.nix
Normal file
40
pkgs/lnd-0.15.2.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, tags ? [ "autopilotrpc" "signrpc" "walletrpc" "chainrpc" "invoicesrpc" "watchtowerrpc" "routerrpc" "monitoring" "kvdb_postgres" "kvdb_etcd" ]
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "lnd";
|
||||
version = "0.15.2-beta";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lightningnetwork";
|
||||
repo = "lnd";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-C7BZ6awY2v5Uvvh12YEosoEQyJoetWzH/1wIQSVjtEk=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-rCdcPkgrFcDfLfF8wipFws7YTKEgotuVqVIJYLMOxbs=";
|
||||
|
||||
subPackages = [ "cmd/lncli" "cmd/lnd" ];
|
||||
|
||||
preBuild = let
|
||||
buildVars = {
|
||||
RawTags = lib.concatStringsSep "," tags;
|
||||
GoVersion = "$(go version | egrep -o 'go[0-9]+[.][^ ]*')";
|
||||
};
|
||||
buildVarsFlags = lib.concatStringsSep " " (lib.mapAttrsToList (k: v: "-X github.com/lightningnetwork/lnd/build.${k}=${v}") buildVars);
|
||||
in
|
||||
lib.optionalString (tags != []) ''
|
||||
buildFlagsArray+=("-tags=${lib.concatStringsSep " " tags}")
|
||||
buildFlagsArray+=("-ldflags=${buildVarsFlags}")
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Lightning Network Daemon";
|
||||
homepage = "https://github.com/lightningnetwork/lnd";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ cypherpunk2140 prusnak ];
|
||||
};
|
||||
}
|
@ -17,8 +17,7 @@ pkgs: pkgsUnstable:
|
||||
elementsd
|
||||
fulcrum
|
||||
hwi
|
||||
lightning-loop
|
||||
lnd;
|
||||
lightning-loop;
|
||||
|
||||
inherit pkgs pkgsUnstable;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user