diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-25T11·18+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-25T11·18+0000 |
commit | 52bf9b86bb79369b7f7b5b8a5726b83ee154da6a (patch) | |
tree | cda06cd7d3bb5d8d3a62a6881533a36860c7acfb /src/nix-store/help.txt | |
parent | 80faa2f98af8616ab89ac2af63431b887a84fb32 (diff) |
* In nix-store: added query `--referers-closure' that returns the
closure of the referers relation rather than the references relation, i.e., the set of all paths that directly or indirectly refer to the given path. Note that contrary to the references closure this set is not fixed; it can change as paths are added to or removed from the store.
Diffstat (limited to 'src/nix-store/help.txt')
-rw-r--r-- | src/nix-store/help.txt | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/nix-store/help.txt b/src/nix-store/help.txt index deef23ff8f3b..35d5423cd8d2 100644 --- a/src/nix-store/help.txt +++ b/src/nix-store/help.txt @@ -4,7 +4,8 @@ nix-store [OPTIONS...] [ARGUMENTS...] Operations: - --realise / -r: build a Nix derivation + --realise / -r: ensure path validity; if a derivation, ensure that + validity of the outputs --add / -A: copy a path to the Nix store --query / -q: query information @@ -27,9 +28,16 @@ Query flags: --outputs: query the output paths of a Nix derivation (default) --requisites / -R: print all paths necessary to realise a path --references: print all paths referenced by the given path - --referers: print all paths refering to the given path + --referers: print all paths directly refering to the given path + --referers-closure: print all paths (in)directly refering to the given path --graph: print a dot graph rooted at given ids +Query switches (not applicable to all queries): + + --use-output: perform query on output of derivation, not derivation itself + --force-realise: realise the path before performing the query + --include-outputs: in `-R' on a derivation, include requisites of outputs + Options: --verbose / -v: verbose operation (may be repeated) |