hashcat: fix build on aarch64

This commit is contained in:
Felix Albrigtsen
2025-08-03 01:22:15 +02:00
parent bcc64dedce
commit e9aa1c19b0
+3
View File
@@ -61,6 +61,9 @@ stdenv.mkDerivation rec {
]
++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform == stdenv.buildPlatform) [
"IS_APPLE_SILICON='${if stdenv.hostPlatform.isAarch64 then "1" else "0"}'"
]
++ lib.optionals stdenv.hostPlatform.isAarch64 [
"IS_AARCH64=1"
];
enableParallelBuilding = true;