Revert "bitcoin: replace nixpkgs package with bitcoin{,d} 24.1"

This reverts commit 3650d4befe.
This commit is contained in:
Jonas Nick 2023-10-23 08:58:10 +00:00
parent 1852305b13
commit 2804d4ada0
No known key found for this signature in database
GPG key ID: 4861DBF262123605
3 changed files with 2 additions and 125 deletions

View file

@ -10,19 +10,6 @@ in
}
}:
let self = {
# TODO-EXTERNAL:
# Remove bitcoin and bitcoind 24.1 packages and replace with 25.0 from nixpkgs
# when https://github.com/bitcoin/bitcoin/issues/27722 has been resolved
bitcoin = pkgs.libsForQt5.callPackage ./bitcoin {
stdenv = if pkgs.stdenv.isDarwin then pkgs.darwin.apple_sdk_11_0.stdenv else pkgs.stdenv;
withGui = true;
inherit (pkgs.darwin) autoSignDarwinBinariesHook;
};
bitcoind = pkgs.callPackage ./bitcoin {
withGui = false;
inherit (pkgs.darwin) autoSignDarwinBinariesHook;
};
clightning-rest = pkgs.callPackage ./clightning-rest { inherit (self) fetchNodeModules; };
clboss = pkgs.callPackage ./clboss { };
clightning-plugins = pkgs.recurseIntoAttrs (import ./clightning-plugins pkgs self.nbPython3Packages);