mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
30 lines
652 B
Nix
30 lines
652 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "lightning-loop";
|
|
version = "0.24.1-beta";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lightninglabs";
|
|
repo = "loop";
|
|
rev = "v${version}";
|
|
hash = "sha256-gPWiKSwXS1eSuHss+hkiqqxqonGYSGmSh3/jL+NlqEg=";
|
|
};
|
|
|
|
vendorHash = "sha256-6bRg6is1g/eRCr82tHMXTWVFv2S0d2h/J3w1gpentjo=";
|
|
|
|
subPackages = [ "cmd/loop" "cmd/loopd" ];
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
description = "Lightning Loop Client";
|
|
homepage = "https://github.com/lightninglabs/loop";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ proofofkeags prusnak ];
|
|
};
|
|
}
|