update nixpkgs

btcpayserver: 1.10.2 -> 1.10.3

Also, don't override boost provided to the bitcoin package, same as in the
nixpkgs.
This commit is contained in:
Jonas Nick
2023-07-29 14:13:08 +00:00
parent d8954ec8dd
commit aca0b1e6ec
2 changed files with 9 additions and 11 deletions
-2
View File
@@ -15,13 +15,11 @@ let self = {
# when https://github.com/bitcoin/bitcoin/issues/27722 has been resolved
bitcoin = pkgsUnstable.libsForQt5.callPackage ./bitcoin {
stdenv = if pkgsUnstable.stdenv.isDarwin then pkgsUnstable.darwin.apple_sdk_11_0.stdenv else pkgsUnstable.stdenv;
boost = pkgsUnstable.boost17x;
withGui = true;
inherit (pkgsUnstable.darwin) autoSignDarwinBinariesHook;
};
bitcoind = pkgsUnstable.callPackage ./bitcoin {
boost = pkgsUnstable.boost17x;
withGui = false;
inherit (pkgsUnstable.darwin) autoSignDarwinBinariesHook;
};