lol

haven-cli: unbreak on aarch64-darwin

authored by

Weijia Wang and committed by
Rick van Schijndel
4053a8da 39ce2d9c

+2 -2
+2 -2
pkgs/applications/blockchains/haven-cli/default.nix
··· 29 29 rm -r external/{miniupnp,randomx,rapidjson,unbound} 30 30 # export patched source for haven-gui 31 31 cp -r . $source 32 + # fix build on aarch64-darwin 33 + substituteInPlace CMakeLists.txt --replace "-march=x86-64" "" 32 34 ''; 33 35 34 36 nativeBuildInputs = [ cmake pkg-config ]; ··· 59 61 license = licenses.bsd3; 60 62 platforms = platforms.all; 61 63 maintainers = with maintainers; [ kim0 ]; 62 - # never built on aarch64-darwin since first introduction in nixpkgs 63 - broken = stdenv.isDarwin && stdenv.isAarch64; 64 64 }; 65 65 }