1
Fork 0
mirror of https://github.com/RGBCube/crash synced 2025-05-14 05:04:59 +00:00

fix: build

This commit is contained in:
RGBCube 2025-04-13 02:51:24 +03:00
parent aa1d4f6693
commit 7849872b30
No known key found for this signature in database
2 changed files with 3 additions and 4 deletions

View file

@ -18,7 +18,7 @@
in {
devShell = forEachSystem (system: with nixpkgs.legacyPackages.${system}; mkShell {
packages = [
zig_0_12
zig_0_14
zls
zon2nix
];

View file

@ -2,7 +2,7 @@
lib,
stdenvNoCC,
zig,
zig_0_14,
bashInteractive,
fallbackShell ? bashInteractive,
@ -20,7 +20,7 @@ in stdenvNoCC.mkDerivation {
dontCheck = true;
nativeBuildInputs = [
zig.hook
zig_0_14.hook
];
zigBuildFlags = [
@ -35,6 +35,5 @@ in stdenvNoCC.mkDerivation {
license = licenses.mit;
mainProgram = "crash";
platforms = platforms.unix;
maintainers = with maintainers; [ RGBCube ];
};
}