bitcoin: fix broken build on aarch64-darwin

fixes #179474
follow-up to #179795
This commit is contained in:
Pavol Rusnak 2022-07-30 13:06:35 +02:00
parent f8ad219dd2
commit bd95ace2d3
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D

View file

@ -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 ];