about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-05-02 18:01:05 +0000
committerGitHub <noreply@github.com>2024-05-02 18:01:05 +0000
commit31135daf485709c22c7c64f6cddfd436731cb590 (patch)
tree1e1e859b59a4c8948db34d42439b5599fdba6d3e /doc
parent7e5eff56a35b2d87cb2bd2802a3aea9d0f761d0a (diff)
parent4c704748b3f2dc351cfb7168793edd84837064a6 (diff)
Merge master into staging-next
Diffstat (limited to 'doc')
-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" ];