diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-11-23T18·16+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-11-23T18·16+0000 |
commit | 3d55f1eb57c04efc10a093379ea38d6c0aefa588 (patch) | |
tree | 058fab07931935c9105c71551f189ba5600a962d /doc | |
parent | ae6bf87273b30258408dc292611f3f50015b843c (diff) |
* A command `nix-store --query --roots <paths>' to find the garbage
collector roots that point (directly or indirectly) to the given paths.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/nix-store.xml | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/doc/manual/nix-store.xml b/doc/manual/nix-store.xml index 562a5439a6eb..566c75bf3e9f 100644 --- a/doc/manual/nix-store.xml +++ b/doc/manual/nix-store.xml @@ -404,6 +404,7 @@ error: cannot delete path `/nix/store/zq0h41l75vlb4z45kzgjjmsjxvcv1qk7-mesa-6.4' <arg choice='plain'><option>--tree</option></arg> <arg choice='plain'><option>--binding</option> <replaceable>name</replaceable></arg> <arg choice='plain'><option>--hash</option></arg> + <arg choice='plain'><option>--roots</option></arg> </group> <arg><option>--use-output</option></arg> <arg><option>-u</option></arg> @@ -586,12 +587,20 @@ query is applied to the target of the symlink.</para> <varlistentry><term><option>--hash</option></term> <listitem><para>Prints the SHA-256 hash of the contents of the - store path <replaceable>paths</replaceable>. Since the hash is + store paths <replaceable>paths</replaceable>. Since the hash is stored in the Nix database, this is a fast operation.</para></listitem> </varlistentry> + <varlistentry><term><option>--roots</option></term> + + <listitem><para>Prints the garbage collector roots that point, + directly or indirectly, at the store paths + <replaceable>paths</replaceable>.</para></listitem> + + </varlistentry> + </variablelist> </refsection> @@ -669,6 +678,18 @@ $ gv graph.ps</screen> </para> +<para>Show every garbage collector root that points to a store path +that depends on <command>svn</command>: + +<screen> +$ nix-store -q --roots $(which svn) +/nix/var/nix/profiles/default-81-link +/nix/var/nix/profiles/default-82-link +/nix/var/nix/profiles/per-user/eelco/profile-97-link +</screen> + +</para> + </refsection> |