Merge pull request #179795 from prusnak/bitcoin-fix

bitcoin: fix broken build on aarch64-darwin
This commit is contained in:
Pavol Rusnak 2022-07-01 14:44:37 +02:00 committed by GitHub
commit 6f1178e68d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,6 +74,10 @@ stdenv.mkDerivation rec {
"--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin"
];
# fix "Killed: 9 test/test_bitcoin"
# https://github.com/NixOS/nixpkgs/issues/179474
hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ];
checkInputs = [ python3 ];
doCheck = true;