Skip to content

Commit cff12ba

Browse files
erikarvstedtprusnak
authored andcommitted
lndhub-go: add logo layout patch
1 parent 915114c commit cff12ba

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

pkgs/default.nix

+12
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,18 @@ let self = {
3535
# Remove this when the clightning build is fixed upstream.
3636
clightning = pkgs.callPackage ./clightning-mistune-workaround { inherit (pkgs) clightning; };
3737

38+
# TODO-EXTERNAL:
39+
# Remove this when the upstream patch is available in nixpkgs
40+
lndhub-go = pkgsUnstable.lndhub-go.overrideDerivation (_: {
41+
patches = [
42+
(pkgs.fetchpatch {
43+
# https://github.com/getAlby/lndhub.go/pull/225
44+
url = "https://github.com/getAlby/lndhub.go/pull/225.patch";
45+
sha256 = "sha256-yjs+ZHXWhggzd5Zqm+qFKdulFuO/QJQkOmh4i99C9wE=";
46+
})
47+
];
48+
});
49+
3850
# Internal pkgs
3951
netns-exec = pkgs.callPackage ./netns-exec { };
4052
krops = import ./krops { inherit pkgs; };

pkgs/pinned.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ pkgs: pkgsUnstable:
1717
fulcrum
1818
hwi
1919
lightning-loop
20-
lnd
21-
lndhub-go;
20+
lnd;
2221

2322
inherit pkgs pkgsUnstable;
2423
}

0 commit comments

Comments
 (0)