summary refs log tree commit diff
path: root/doc/stdenv/stdenv.chapter.md
diff options
context:
space:
mode:
authorValentin Gagarin <valentin@fricklerhandwerk.de>2022-04-20 21:21:31 +0200
committerValentin Gagarin <valentin.gagarin@tweag.io>2022-04-21 09:27:11 +0200
commit9a2ed653704baabceb6c5a74603d1814583426be (patch)
tree3d7613d5a4ad1f7f355021d67a2ac7e80fcb80f9 /doc/stdenv/stdenv.chapter.md
parentb4d9d682c8cdfdfc8919f3140578971dcb64bd25 (diff)
downloadnixpkgs-9a2ed653704baabceb6c5a74603d1814583426be.tar
nixpkgs-9a2ed653704baabceb6c5a74603d1814583426be.tar.gz
nixpkgs-9a2ed653704baabceb6c5a74603d1814583426be.tar.bz2
nixpkgs-9a2ed653704baabceb6c5a74603d1814583426be.tar.lz
nixpkgs-9a2ed653704baabceb6c5a74603d1814583426be.tar.xz
nixpkgs-9a2ed653704baabceb6c5a74603d1814583426be.tar.zst
nixpkgs-9a2ed653704baabceb6c5a74603d1814583426be.zip
fix wording, remove too much specificity
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
Diffstat (limited to 'doc/stdenv/stdenv.chapter.md')
-rw-r--r--doc/stdenv/stdenv.chapter.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/stdenv/stdenv.chapter.md b/doc/stdenv/stdenv.chapter.md
index 3ac58cc7c04..a713bfab03b 100644
--- a/doc/stdenv/stdenv.chapter.md
+++ b/doc/stdenv/stdenv.chapter.md
@@ -945,7 +945,7 @@ This runs the strip command on installed binaries and libraries. This removes un
 
 ### `patch-shebangs.sh` {#patch-shebangs.sh}
 
-This setup hook patches installed scripts to use Nix store paths to their shebang interpreter as found in the build environment's `PATH`. The [shebang](https://en.wikipedia.org/wiki/Shebang_(Unix)) line tells a Unix-like operating system what interpreter to use to execute the script's contents.
+This setup hook patches installed scripts to add Nix store paths to their shebang interpreter as found in the build environment. The [shebang](https://en.wikipedia.org/wiki/Shebang_(Unix)) line tells a Unix-like operating system what interpreter to use to execute the script's contents.
 
 ::: note
 The [generic builder][generic-builder] populates `PATH` from inputs of the derivation.