summary refs log tree commit diff
path: root/lib/fileset
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fileset')
-rw-r--r--lib/fileset/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fileset/README.md b/lib/fileset/README.md
index c439e449544..ebe13f08fde 100644
--- a/lib/fileset/README.md
+++ b/lib/fileset/README.md
@@ -205,7 +205,7 @@ File sets do not support Nix store paths in strings such as `"/nix/store/...-sou
 
 Arguments:
 - (+) Such paths are usually produced by derivations, which means `toSource` would either:
-  - Require IFD if `builtins.path` is used as the underlying primitive
+  - Require [Import From Derivation](https://nixos.org/manual/nix/unstable/language/import-from-derivation) (IFD) if `builtins.path` is used as the underlying primitive
   - Require importing the entire `root` into the store such that derivations can be used to do the filtering
 - (+) The convenient path coercion like `union ./foo ./bar` wouldn't work for absolute paths, requiring more verbose alternate interfaces:
   - `let root = "/nix/store/...-source"; in union "${root}/foo" "${root}/bar"`