about summary refs log tree commit diff
path: root/doc/hooks
diff options
context:
space:
mode:
authorFelix Uhl <iFreilicht@users.noreply.github.com>2024-05-02 19:58:52 +0200
committerGitHub <noreply@github.com>2024-05-02 17:58:52 +0000
commit4c704748b3f2dc351cfb7168793edd84837064a6 (patch)
tree0ace4682aa425c22b0edc150357093cfc9ccfc50 /doc/hooks
parente993524725cffa05817081b0aa4ab5d4245b41ca (diff)
zig: 0.11 -> 0.12 (#306077)
This upgrades the default version of zig to zig_0_12, which builds
reproducibly on darwin.

Fixes #299091.

Also upgrades all packages compatible with zig 0.12 to that version.
I tried to upgrade packages currently pinning 0.11 as well, but only a
few worked.

Co-authored-by: Weijia Wang (wegank) <contact@weijia.wang>
Diffstat (limited to 'doc/hooks')
-rw-r--r--doc/hooks/zig.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/hooks/zig.section.md b/doc/hooks/zig.section.md
index 1a09491649d7f..8bef293769e58 100644
--- a/doc/hooks/zig.section.md
+++ b/doc/hooks/zig.section.md
@@ -9,14 +9,14 @@ In Nixpkgs, `zig.hook` overrides the default build, check and install phases.
 ```nix
 { lib
 , stdenv
-, zig_0_11
+, zig
 }:
 
 stdenv.mkDerivation {
   # . . .
 
   nativeBuildInputs = [
-    zig_0_11.hook
+    zig.hook
   ];
 
   zigBuildFlags = [ "-Dman-pages=true" ];