1
Fork 0
mirror of https://github.com/RGBCube/crash synced 2025-05-31 04:58:12 +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 { in {
devShell = forEachSystem (system: with nixpkgs.legacyPackages.${system}; mkShell { devShell = forEachSystem (system: with nixpkgs.legacyPackages.${system}; mkShell {
packages = [ packages = [
zig_0_12 zig_0_14
zls zls
zon2nix zon2nix
]; ];

View file

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