brioche: fix eval on unsupported systems (#540877)

This commit is contained in:
Gaétan Lepage
2026-07-12 20:05:01 +00:00
committed by GitHub

View File

@@ -64,5 +64,11 @@ rustPlatform.buildRustPackage (finalAttrs: {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
mainProgram = "brioche";
platforms = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
};
})