From c1ead2e2f18aedcfbf547748b73c77e8f3340a9f Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 23 Jun 2024 21:55:57 -0700 Subject: [PATCH] nix: update to zig 0.13 --- nix/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/package.nix b/nix/package.nix index c497516e0..47bf5ac48 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -22,7 +22,7 @@ git, ncurses, pkg-config, - zig_0_12, + zig_0_13, pandoc, revision ? "dirty", optimize ? "Debug", @@ -34,7 +34,7 @@ # https://github.com/ziglang/zig/issues/14281#issuecomment-1624220653 is # ultimately acted on and has made its way to a nixpkgs implementation, this # can probably be removed in favor of that. - zig012Hook = zig_0_12.hook.overrideAttrs { + zig012Hook = zig_0_13.hook.overrideAttrs { zig_default_flags = "-Dcpu=baseline -Doptimize=${optimize}"; }; @@ -79,7 +79,7 @@ name = "ghostty-cache"; nativeBuildInputs = [ git - zig_0_12.hook + zig_0_13.hook ]; dontConfigure = true;