lnd: fix cert key format bug
This commit is contained in:
parent
744d8fe379
commit
9f3daab64f
@ -22,6 +22,11 @@ let self = {
|
|||||||
spark-wallet = pkgs.callPackage ./spark-wallet { };
|
spark-wallet = pkgs.callPackage ./spark-wallet { };
|
||||||
trustedcoin = pkgs.callPackage ./trustedcoin { };
|
trustedcoin = pkgs.callPackage ./trustedcoin { };
|
||||||
|
|
||||||
|
# TODO-EXTERNAL:
|
||||||
|
# Remove this when https://github.com/lightningnetwork/lnd/pull/7672
|
||||||
|
# has been resolved
|
||||||
|
lnd = pkgsUnstable.callPackage ./lnd { };
|
||||||
|
|
||||||
pyPkgs = import ./python-packages self pkgs.python3;
|
pyPkgs = import ./python-packages self pkgs.python3;
|
||||||
inherit (self.pyPkgs)
|
inherit (self.pyPkgs)
|
||||||
nbPython3Packages
|
nbPython3Packages
|
||||||
|
12
pkgs/lnd/default.nix
Normal file
12
pkgs/lnd/default.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{ lnd, fetchpatch }:
|
||||||
|
|
||||||
|
lnd.overrideAttrs (_: {
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
# https://github.com/lightningnetwork/lnd/pull/7672
|
||||||
|
name = "fix-PKCS8-cert-key-support";
|
||||||
|
url = "https://github.com/lightningnetwork/lnd/pull/7672.patch";
|
||||||
|
hash = "sha256-j9EirxyNi48DGzLuHcZ36LrFlbJLXrE8L+1TYh5Yznk=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
})
|
@ -17,7 +17,6 @@ pkgs: pkgsUnstable:
|
|||||||
fulcrum
|
fulcrum
|
||||||
hwi
|
hwi
|
||||||
lightning-loop
|
lightning-loop
|
||||||
lnd
|
|
||||||
nbxplorer;
|
nbxplorer;
|
||||||
|
|
||||||
inherit pkgs pkgsUnstable;
|
inherit pkgs pkgsUnstable;
|
||||||
|
Loading…
Reference in New Issue
Block a user