Skip to content

Commit

Permalink
Merge #606: Update nixpkgs
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jonasnick committed May 7, 2023
2 parents 490146f + 9f3daab commit 30c874d
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 11 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ let self = {
spark-wallet = pkgs.callPackage ./spark-wallet { };
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;
inherit (self.pyPkgs)
nbPython3Packages
Expand Down
12 changes: 12 additions & 0 deletions pkgs/lnd/default.nix
Original file line number Diff line number Diff line change
@@ -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=";
})
];
})
3 changes: 1 addition & 2 deletions pkgs/pinned.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ pkgs: pkgsUnstable:
bitcoin
bitcoind
extra-container
lightning-loop
lightning-pool
lndconnect;

Expand All @@ -17,7 +16,7 @@ pkgs: pkgsUnstable:
elementsd
fulcrum
hwi
lnd
lightning-loop
nbxplorer;

inherit pkgs pkgsUnstable;
Expand Down
6 changes: 3 additions & 3 deletions test/nixos-search/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 30c874d

Please sign in to comment.