diff options
| author | Jörg Thalheim <Mic92@users.noreply.github.com> | 2023-05-14 16:20:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-14 16:20:54 +0100 |
| commit | 5fe2e6fbb3b718e3c8a550527627e07fd866c2a8 (patch) | |
| tree | ebcaffebf58c9464f4343a6e4ce83c1b62007fb9 | |
| parent | Merge pull request #231857 from figsoda/cloudlog (diff) | |
| parent | bitcoin: fix copmilation on x86_64-darwin (diff) | |
| download | nixpkgs-5fe2e6fbb3b718e3c8a550527627e07fd866c2a8.tar.gz | |
Merge pull request #231835 from divanorama/bitcoin_darwin_fix
bitcoin: fix copmilation on x86_64-darwin
| -rw-r--r-- | pkgs/top-level/all-packages.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 90c7edefc914..01fbfda65a74 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -35487,6 +35487,7 @@ with pkgs; balanceofsatoshis = nodePackages.balanceofsatoshis; bitcoin = libsForQt5.callPackage ../applications/blockchains/bitcoin { + stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; boost = boost17x; withGui = true; inherit (darwin) autoSignDarwinBinariesHook; |
