summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorlaikq <55911173+laikq@users.noreply.github.com>2021-10-05 08:47:08 +0200
committerlaikq <55911173+laikq@users.noreply.github.com>2021-10-05 08:47:08 +0200
commit6ef3c96ddf7132e0dbb0d958b03fcc0ce327a0b0 (patch)
tree746c840bf49fe9f486eeb7bfebd54ac408c27656 /doc
parent441e405c77f73522cc6e39b864efd3facaffb8e2 (diff)
downloadnixpkgs-6ef3c96ddf7132e0dbb0d958b03fcc0ce327a0b0.tar
nixpkgs-6ef3c96ddf7132e0dbb0d958b03fcc0ce327a0b0.tar.gz
nixpkgs-6ef3c96ddf7132e0dbb0d958b03fcc0ce327a0b0.tar.bz2
nixpkgs-6ef3c96ddf7132e0dbb0d958b03fcc0ce327a0b0.tar.lz
nixpkgs-6ef3c96ddf7132e0dbb0d958b03fcc0ce327a0b0.tar.xz
nixpkgs-6ef3c96ddf7132e0dbb0d958b03fcc0ce327a0b0.tar.zst
nixpkgs-6ef3c96ddf7132e0dbb0d958b03fcc0ce327a0b0.zip
doc: reference sourceRoot in description of srcs
Diffstat (limited to 'doc')
-rw-r--r--doc/stdenv/stdenv.chapter.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/stdenv/stdenv.chapter.md b/doc/stdenv/stdenv.chapter.md
index 9befcaa51a9..02042407f6c 100644
--- a/doc/stdenv/stdenv.chapter.md
+++ b/doc/stdenv/stdenv.chapter.md
@@ -373,11 +373,11 @@ Additional file types can be supported by setting the `unpackCmd` variable (see
 
 ##### `srcs` / `src` {#var-stdenv-src}
 
-The list of source files or directories to be unpacked or copied. One of these must be set.
+The list of source files or directories to be unpacked or copied. One of these must be set. Note that if you use `srcs`, you should also set `sourceRoot` or `setSourceRoot`.
 
 ##### `sourceRoot` {#var-stdenv-sourceRoot}
 
-After running `unpackPhase`, the generic builder changes the current directory to the directory created by unpacking the sources. If there are multiple source directories, you should set `sourceRoot` to the name of the intended directory.
+After running `unpackPhase`, the generic builder changes the current directory to the directory created by unpacking the sources. If there are multiple source directories, you should set `sourceRoot` to the name of the intended directory. Set `sourceRoot = ".";` if you use `srcs` and control the unpack phase yourself.
 
 ##### `setSourceRoot` {#var-stdenv-setSourceRoot}