lnd: fix cert key format bug
This commit is contained in:
committed by
Greg Shuflin
parent
de4bd2fb6f
commit
d04549c0dc
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=";
|
||||
})
|
||||
];
|
||||
})
|
||||
Reference in New Issue
Block a user