1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

lnd: init at 0.7.0-beta

This commit is contained in:
Ștefan D. Mihăilă 2019-07-22 17:19:15 +02:00
parent 594c287e45
commit cd50801073
No known key found for this signature in database
GPG key ID: 6220AD7846220A52
3 changed files with 25 additions and 0 deletions

View file

@ -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; };

View 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 ];
};
}

View file

@ -17016,6 +17016,7 @@ in
bitcoin = altcoins.bitcoin;
clightning = altcoins.clightning;
lnd = altcoins.lnd;
bitcoin-xt = altcoins.bitcoin-xt;
cryptop = altcoins.cryptop;