summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-12-08 02:10:12 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-12-08 02:29:18 +1000
commit7d04753e2f8d5231bff50e76a52a7b994a831f88 (patch)
tree3a31714c213dbf0efee6909f9df9dfefb52547df /doc/languages-frameworks
parentf6a0924bd650d4d39ddf214e8fef052c610eec60 (diff)
downloadnixpkgs-7d04753e2f8d5231bff50e76a52a7b994a831f88.tar
nixpkgs-7d04753e2f8d5231bff50e76a52a7b994a831f88.tar.gz
nixpkgs-7d04753e2f8d5231bff50e76a52a7b994a831f88.tar.bz2
nixpkgs-7d04753e2f8d5231bff50e76a52a7b994a831f88.tar.lz
nixpkgs-7d04753e2f8d5231bff50e76a52a7b994a831f88.tar.xz
nixpkgs-7d04753e2f8d5231bff50e76a52a7b994a831f88.tar.zst
nixpkgs-7d04753e2f8d5231bff50e76a52a7b994a831f88.zip
doc/go: fix link
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/go.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/go.section.md b/doc/languages-frameworks/go.section.md
index bca09e59680..523f5b26ec7 100644
--- a/doc/languages-frameworks/go.section.md
+++ b/doc/languages-frameworks/go.section.md
@@ -17,7 +17,7 @@ In the following is an example expression using `buildGoModule`, the following a
   In that case, rather than fetching the dependencies and vendoring them, the dependencies vendored in the source repo will be used.
 
   To avoid updating this field when dependencies change, run `go mod vendor` in your source repo and set `vendorHash = null;`  
-  To obtain the actual hash, set `vendorHash = lib.fakeSha256;` and run the build ([more details here](https://nixos.org/manual/nixpkgs/stable/#sec-source-hashes)).
+  To obtain the actual hash, set `vendorHash = lib.fakeSha256;` and run the build ([more details here](#sec-source-hashes)).
 - `proxyVendor`: Fetches (go mod download) and proxies the vendor directory. This is useful if your code depends on c code and go mod tidy does not include the needed sources to build or if any dependency has case-insensitive conflicts which will produce platform dependant `vendorHash` checksums.
 
 ```nix