2021-05-24 16:14:59 +00:00
|
|
|
{ buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, lib
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "lightning-pool";
|
2021-12-30 14:07:11 +00:00
|
|
|
version = "0.5.3-alpha";
|
2021-05-24 16:14:59 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lightninglabs";
|
|
|
|
repo = "pool";
|
|
|
|
rev = "v${version}";
|
2021-12-30 14:07:11 +00:00
|
|
|
sha256 = "1nc3hksk9qcxrsyqpz9vcfc8x093rc8yx8ppfk177j9fhdnn8bk7";
|
2021-05-24 16:14:59 +00:00
|
|
|
};
|
|
|
|
|
2021-12-30 14:07:11 +00:00
|
|
|
vendorSha256 = "09yxaa74814l1rp0arqhqpplr2j0p8dj81zqcbxlwp5ckjv9r2za";
|
2021-05-24 16:14:59 +00:00
|
|
|
|
|
|
|
subPackages = [ "cmd/pool" "cmd/poold" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Lightning Pool Client";
|
|
|
|
homepage = "https://github.com/lightninglabs/pool";
|
|
|
|
license = licenses.mit;
|
2021-06-18 09:09:38 +00:00
|
|
|
maintainers = with maintainers; [ proofofkeags prusnak ];
|
2021-05-24 16:14:59 +00:00
|
|
|
};
|
|
|
|
}
|