diff --git a/flake.nix b/flake.nix index 74e889e..b39f348 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ in { devShell = forEachSystem (system: with nixpkgs.legacyPackages.${system}; mkShell { packages = [ - zig_0_12 + zig_0_14 zls zon2nix ]; diff --git a/package.nix b/package.nix index faeecdb..607e90d 100644 --- a/package.nix +++ b/package.nix @@ -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 ]; }; }