bitcoin: fix broken build on aarch64-darwin
fixes #179474 follow-up to #179795
This commit is contained in:
parent
f8ad219dd2
commit
bd95ace2d3
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
# fix "Killed: 9 test/test_bitcoin"
|
||||
# https://github.com/NixOS/nixpkgs/issues/179474
|
||||
hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ];
|
||||
hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "fortify" "stackprotector" ];
|
||||
|
||||
checkInputs = [ python3 ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue