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 13:21:55 +00:00
parent d8954ec8dd
commit aca0b1e6ec
No known key found for this signature in database
GPG key ID: 4861DBF262123605
2 changed files with 9 additions and 11 deletions

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;
};