lnd: init at 0.7.0-beta
This commit is contained in:
parent
594c287e45
commit
cd50801073
3 changed files with 25 additions and 0 deletions
|
@ -65,6 +65,8 @@ rec {
|
|||
};
|
||||
litecoind = litecoin.override { withGui = false; };
|
||||
|
||||
lnd = callPackage ./lnd.nix { };
|
||||
|
||||
masari = callPackage ./masari.nix { boost = boost165; };
|
||||
|
||||
memorycoin = callPackage ./memorycoin.nix { boost = boost165; withGui = true; };
|
||||
|
|
22
pkgs/applications/altcoins/lnd.nix
Normal file
22
pkgs/applications/altcoins/lnd.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ buildGoModule, fetchFromGitHub, lib }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "lnd";
|
||||
version = "0.7.0-beta";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lightningnetwork";
|
||||
repo = "lnd";
|
||||
rev = "v${version}";
|
||||
sha256 = "0d6m1vfy33rg6d7qmkpydiypav1girxsnxan9njyjz0vhinmq0sx";
|
||||
};
|
||||
|
||||
modSha256 = "0akxi7xhyz7xx0vc003abidva02sp940cc2gfjg4fmzkc95cajc9";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Lightning Network Daemon";
|
||||
homepage = "https://github.com/lightningnetwork/lnd";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with maintainers; [ cypherpunk2140 ];
|
||||
};
|
||||
}
|
|
@ -17016,6 +17016,7 @@ in
|
|||
|
||||
bitcoin = altcoins.bitcoin;
|
||||
clightning = altcoins.clightning;
|
||||
lnd = altcoins.lnd;
|
||||
|
||||
bitcoin-xt = altcoins.bitcoin-xt;
|
||||
cryptop = altcoins.cryptop;
|
||||
|
|
Loading…
Reference in a new issue