summary refs log tree commit diff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorHraban Luyat <hraban@0brg.net>2023-08-28 14:12:27 -0400
committerHraban Luyat <hraban@0brg.net>2023-08-28 14:12:27 -0400
commit3a8f2d0e9ff854515932f62c510d600f8fe64810 (patch)
treed9045e9b7f3e7989f1498e8562e22f0a77fd92bb /CONTRIBUTING.md
parentcddebdb60de376c1bdb7a4e6ee3d98355453fe56 (diff)
downloadnixpkgs-3a8f2d0e9ff854515932f62c510d600f8fe64810.tar
nixpkgs-3a8f2d0e9ff854515932f62c510d600f8fe64810.tar.gz
nixpkgs-3a8f2d0e9ff854515932f62c510d600f8fe64810.tar.bz2
nixpkgs-3a8f2d0e9ff854515932f62c510d600f8fe64810.tar.lz
nixpkgs-3a8f2d0e9ff854515932f62c510d600f8fe64810.tar.xz
nixpkgs-3a8f2d0e9ff854515932f62c510d600f8fe64810.tar.zst
nixpkgs-3a8f2d0e9ff854515932f62c510d600f8fe64810.zip
docs: fix link to Nix manual on sandbox config
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 2d3f274847d..177e6a4a687 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -129,7 +129,7 @@ When a PR is created, it will be pre-populated with some checkboxes detailed bel
 
 #### Tested using sandboxing
 
-When sandbox builds are enabled, Nix will setup an isolated environment for each build process. It is used to remove further hidden dependencies set by the build environment to improve reproducibility. This includes access to the network during the build outside of `fetch*` functions and files outside the Nix store. Depending on the operating system access to other resources are blocked as well (ex. inter process communication is isolated on Linux); see [sandbox](https://nixos.org/nix/manual/#conf-sandbox) in Nix manual for details.
+When sandbox builds are enabled, Nix will setup an isolated environment for each build process. It is used to remove further hidden dependencies set by the build environment to improve reproducibility. This includes access to the network during the build outside of `fetch*` functions and files outside the Nix store. Depending on the operating system access to other resources are blocked as well (ex. inter process communication is isolated on Linux); see [sandbox](https://nixos.org/manual/nix/stable/command-ref/conf-file#conf-sandbox) in the Nix manual for details.
 
 Sandboxing is not enabled by default in Nix due to a small performance hit on each build. In pull requests for [nixpkgs](https://github.com/NixOS/nixpkgs/) people are asked to test builds with sandboxing enabled (see `Tested using sandboxing` in the pull request template) because in [Hydra](https://nixos.org/hydra/) sandboxing is also used.