Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 27 lines 630 B view raw
1{ buildGoModule 2, fetchFromGitHub 3, lib 4}: 5 6buildGoModule rec { 7 pname = "lightning-pool"; 8 version = "0.5.3-alpha"; 9 10 src = fetchFromGitHub { 11 owner = "lightninglabs"; 12 repo = "pool"; 13 rev = "v${version}"; 14 sha256 = "1nc3hksk9qcxrsyqpz9vcfc8x093rc8yx8ppfk177j9fhdnn8bk7"; 15 }; 16 17 vendorSha256 = "09yxaa74814l1rp0arqhqpplr2j0p8dj81zqcbxlwp5ckjv9r2za"; 18 19 subPackages = [ "cmd/pool" "cmd/poold" ]; 20 21 meta = with lib; { 22 description = "Lightning Pool Client"; 23 homepage = "https://github.com/lightninglabs/pool"; 24 license = licenses.mit; 25 maintainers = with maintainers; [ proofofkeags prusnak ]; 26 }; 27}