diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-12-20T17·41+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-12-20T17·41+0100 |
commit | 2754a07eadfa3fe263f83830c701748bbd4c0420 (patch) | |
tree | da273ff0e02a7aa7eb00345f1f1b0ca23ba88643 /src/libstore/misc.hh | |
parent | 06f62defe640517267a6a16dd222076c822f3123 (diff) |
nix-store -q --roots: Respect the gc-keep-outputs/gc-keep-derivations settings
So if a path is not garbage solely because it's reachable from a root due to the gc-keep-outputs or gc-keep-derivations settings, ‘nix-store -q --roots’ now shows that root.
Diffstat (limited to 'src/libstore/misc.hh')
-rw-r--r-- | src/libstore/misc.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/misc.hh b/src/libstore/misc.hh index fe0bbdd799d7..b4bd9ed8a49f 100644 --- a/src/libstore/misc.hh +++ b/src/libstore/misc.hh @@ -17,9 +17,9 @@ Derivation derivationFromPath(StoreAPI & store, const Path & drvPath); `storePath' is returned; that is, the closures under the `referrers' relation instead of the `references' relation is returned. */ -void computeFSClosure(StoreAPI & store, const Path & storePath, +void computeFSClosure(StoreAPI & store, const Path & path, PathSet & paths, bool flipDirection = false, - bool includeOutputs = false); + bool includeOutputs = false, bool includeDerivers = false); /* Return the path corresponding to the output identifier `id' in the given derivation. */ |