File sets

The lib.fileset library allows you to work with file sets. A file set is a mathematical set of local files that can be added to the Nix store for use in Nix derivations. File sets are easy and safe to use, providing obvious and composable semantics with good error messages to prevent mistakes.

These sections apply to the entire library. See the function reference for function-specific documentation.

The file set library is currently very limited but is being expanded to include more functions over time.

Implicit coercion from paths to file sets

All functions accepting file sets as arguments can also accept paths as arguments. Such path arguments are implicitly coerced to file sets containing all files under that path:

  • A path to a file turns into a file set containing that single file.
  • A path to a directory turns into a file set containing all files recursively in that directory.

If the path points to a non-existent location, an error is thrown.

Note

Just like in Git, file sets cannot represent empty directories. Because of this, a path to a directory that contains no files (recursively) will turn into a file set containing no files.

Note

File set coercion does not add any of the files under the coerced paths to the store. Only the toSource function adds files to the Nix store, and only those files contained in the fileset argument. This is in contrast to using paths in string interpolation, which does add the entire referenced path to the store.

Example

Assume we are in a local directory with a file hierarchy like this:

β”œβ”€ a/
β”‚  β”œβ”€ x (file)
β”‚  └─ b/
β”‚   Β  └─ y (file)
└─ c/
   └─ d/

Here's a listing of which files get included when different path expressions get coerced to file sets:

  • ./. as a file set contains both a/x and a/b/y (c/ does not contain any files and is therefore omitted).
  • ./a as a file set contains both a/x and a/b/y.
  • ./a/x as a file set contains only a/x.
  • ./a/b as a file set contains only a/b/y.
  • ./c as a file set is empty, since neither c nor c/d contain any files.