fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 buildGoModule,
3 fetchFromGitHub,
4 lib,
5}:
6
7buildGoModule rec {
8 pname = "lightning-pool";
9 version = "0.6.4-beta";
10
11 src = fetchFromGitHub {
12 owner = "lightninglabs";
13 repo = "pool";
14 rev = "v${version}";
15 hash = "sha256-lSc/zOZ5VpmaZ7jrlGvSaczrgOtAMS9tDUxcMoFdBmQ=";
16 };
17
18 vendorHash = "sha256-DD27zUW524qe9yLaVPEzw/c4sSzlH89HMw0PdtNYEhg=";
19
20 subPackages = [
21 "cmd/pool"
22 "cmd/poold"
23 ];
24
25 ldflags = [
26 "-s"
27 "-w"
28 ];
29
30 meta = {
31 description = "Lightning Pool Client";
32 homepage = "https://github.com/lightninglabs/pool";
33 license = lib.licenses.mit;
34 maintainers = with lib.maintainers; [ proofofkeags ];
35 };
36}