y-cruncher: allow building for all linux platforms

y-cruncher will automatically use QEMU to run its calculations on non
`x86_64-linux` platforms, it even works for 16K page systems like
Apple silicon macs.
This commit is contained in:
Jasi
2025-10-26 19:34:52 -04:00
parent af67f9ba97
commit 26e7dec385
+1 -1
View File
@@ -68,6 +68,6 @@ stdenvNoCC.mkDerivation (finalAttrs: {
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
maintainers = with lib.maintainers; [ normalcea ];
mainProgram = "y-cruncher";
platforms = [ "x86_64-linux" ];
platforms = lib.platforms.linux;
};
})