Skip to content

Commit 30c874d

Browse files
committed
Merge #606: Update nixpkgs
9f3daab lnd: fix cert key format bug (Erik Arvstedt) 744d8fe update nixpkgs (Erik Arvstedt) Pull request description: ACKs for top commit: jonasnick: ACK 9f3daab Tree-SHA512: eb99133c495d9e0df6ba50efb9c693a94883467845aa30537fbb7f40c60c36acb414d1865653ad33a3a05ac2e0dbfcfdc54039754aa54e83f60b9b3f071c7640
2 parents 490146f + 9f3daab commit 30c874d

File tree

5 files changed

+27
-11
lines changed

5 files changed

+27
-11
lines changed

flake.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkgs/default.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ let self = {
2222
spark-wallet = pkgs.callPackage ./spark-wallet { };
2323
trustedcoin = pkgs.callPackage ./trustedcoin { };
2424

25+
# TODO-EXTERNAL:
26+
# Remove this when https://github.com/lightningnetwork/lnd/pull/7672
27+
# has been resolved
28+
lnd = pkgsUnstable.callPackage ./lnd { };
29+
2530
pyPkgs = import ./python-packages self pkgs.python3;
2631
inherit (self.pyPkgs)
2732
nbPython3Packages

pkgs/lnd/default.nix

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{ lnd, fetchpatch }:
2+
3+
lnd.overrideAttrs (_: {
4+
patches = [
5+
(fetchpatch {
6+
# https://github.com/lightningnetwork/lnd/pull/7672
7+
name = "fix-PKCS8-cert-key-support";
8+
url = "https://github.com/lightningnetwork/lnd/pull/7672.patch";
9+
hash = "sha256-j9EirxyNi48DGzLuHcZ36LrFlbJLXrE8L+1TYh5Yznk=";
10+
})
11+
];
12+
})

pkgs/pinned.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ pkgs: pkgsUnstable:
55
bitcoin
66
bitcoind
77
extra-container
8-
lightning-loop
98
lightning-pool
109
lndconnect;
1110

@@ -17,7 +16,7 @@ pkgs: pkgsUnstable:
1716
elementsd
1817
fulcrum
1918
hwi
20-
lnd
19+
lightning-loop
2120
nbxplorer;
2221

2322
inherit pkgs pkgsUnstable;

test/nixos-search/flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)