2003-11-26 12:24:13 +01:00
|
|
|
<refentry>
|
|
|
|
<refnamediv>
|
|
|
|
<refname>nix-store</refname>
|
|
|
|
<refpurpose>manipulate or query the Nix store</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
|
|
|
|
<refsynopsisdiv>
|
|
|
|
<cmdsynopsis>
|
|
|
|
<command>nix-store</command>
|
|
|
|
<group choice='opt' rep='repeat'>
|
|
|
|
<arg><option>--verbose</option></arg>
|
|
|
|
<arg><option>-v</option></arg>
|
|
|
|
</group>
|
|
|
|
<group choice='opt' rep='repeat'>
|
|
|
|
<arg><option>--keep-failed</option></arg>
|
|
|
|
<arg><option>-K</option></arg>
|
|
|
|
</group>
|
|
|
|
<arg choice='plain'><replaceable>operation</replaceable></arg>
|
|
|
|
<arg rep='repeat'><replaceable>options</replaceable></arg>
|
|
|
|
<arg rep='repeat'><replaceable>arguments</replaceable></arg>
|
|
|
|
</cmdsynopsis>
|
|
|
|
</refsynopsisdiv>
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
<title>Description</title>
|
|
|
|
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
The command <command>nix-store</command> performs primitive
|
|
|
|
operations on the Nix store. You generally do not need to run
|
|
|
|
this command manually.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
<command>nix-store</command> takes exactly one
|
|
|
|
<emphasis>operation</emphasis> flag which indicated the
|
|
|
|
subcommand to be performed. These are individually
|
|
|
|
documented below.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
</refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection>
|
|
|
|
<title>Common options</title>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
This section lists the options that are common to all Nix
|
|
|
|
operations. These options are allowed for every subcommand,
|
|
|
|
though they may not always have an effect.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<variablelist>
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
&opt-verbose;
|
|
|
|
|
2003-11-26 12:24:13 +01:00
|
|
|
<varlistentry>
|
2004-01-08 16:01:37 +01:00
|
|
|
<term><option>--keep-failed</option></term>
|
2003-11-26 12:24:13 +01:00
|
|
|
<listitem>
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
Specifies that in case of a build failure, the temporary directory
|
|
|
|
(usually in <filename>/tmp</filename>) in which the build takes
|
|
|
|
place should not be deleted. The path of the build directory is
|
|
|
|
printed as an informational message.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
</variablelist>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
</refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection>
|
|
|
|
<title>Environment variables</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The following environment variables affect the behaviour of
|
|
|
|
<command>nix-store</command>.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<variablelist>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
|
|
|
<varlistentry>
|
2004-01-08 16:01:37 +01:00
|
|
|
<term><envar>TMPDIR</envar>=<replaceable>path</replaceable></term>
|
2003-11-26 12:24:13 +01:00
|
|
|
<listitem>
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
Use the directory <replaceable>path</replaceable> to store
|
|
|
|
temporary files. In particular, this includes temporary
|
|
|
|
build directories; these can take up substantial amounts
|
|
|
|
of disk space. The default is <filename>/tmp</filename>.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
</variablelist>
|
2004-01-08 16:01:37 +01:00
|
|
|
|
|
|
|
</refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
|
2003-11-26 12:24:13 +01:00
|
|
|
|
|
|
|
<!--######################################################################-->
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection>
|
|
|
|
<title>Operation <option>--realise</option></title>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
<title>Synopsis</title>
|
|
|
|
<cmdsynopsis>
|
2004-01-08 16:01:37 +01:00
|
|
|
<command>nix-store</command>
|
2003-11-26 12:24:13 +01:00
|
|
|
<group>
|
2004-01-08 16:01:37 +01:00
|
|
|
<arg><option>--realise</option></arg>
|
|
|
|
<arg><option>-r</option></arg>
|
2003-11-26 12:24:13 +01:00
|
|
|
</group>
|
2004-01-08 16:01:37 +01:00
|
|
|
<arg choice='plain' rep='repeat'><replaceable>paths</replaceable></arg>
|
2003-11-26 12:24:13 +01:00
|
|
|
</cmdsynopsis>
|
2004-01-08 16:01:37 +01:00
|
|
|
</refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
<title>Description</title>
|
|
|
|
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
The operation <option>--install</option> realises in the file
|
|
|
|
system the store expressions stored in
|
|
|
|
<replaceable>paths</replaceable>. If these expressions are
|
|
|
|
derivation expressions, they are first
|
|
|
|
<emphasis>normalised</emphasis> into a closure expression.
|
|
|
|
This may happen in two ways. First, the corresponding closure
|
|
|
|
expression (the <emphasis>successor</emphasis>) may already
|
|
|
|
known (either because the build has already been performed, or
|
|
|
|
because a successor was explicitly registered through the
|
|
|
|
<option>--successor</option> operation). Otherwise, the build
|
|
|
|
action described by the derivation is performed, and a closure
|
|
|
|
expression is computed by scanning the result of the build for
|
|
|
|
references to other paths in the store.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
The paths of the closure expression corresponding to each
|
|
|
|
expression in <replaceable>paths</replaceable> is printed on
|
|
|
|
standard output.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
</refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
</refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
|
2003-11-26 12:24:13 +01:00
|
|
|
|
|
|
|
<!--######################################################################-->
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
<title>Operation <option>--delete</option></title>
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
<title>Synopsis</title>
|
|
|
|
<cmdsynopsis>
|
2004-01-08 16:01:37 +01:00
|
|
|
<command>nix-store</command>
|
2003-11-26 12:24:13 +01:00
|
|
|
<group>
|
|
|
|
<arg><option>--delete</option></arg>
|
|
|
|
<arg><option>-d</option></arg>
|
|
|
|
</group>
|
|
|
|
<arg choice='plain' rep='repeat'><replaceable>paths</replaceable></arg>
|
|
|
|
</cmdsynopsis>
|
2004-01-08 16:01:37 +01:00
|
|
|
</refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
<title>Description</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The operation <option>--delete</option> unconditionally deletes the
|
|
|
|
paths <replaceable>paths</replaceable> from the Nix store. It is an
|
|
|
|
error to attempt to delete paths outside of the store.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<warning>
|
|
|
|
<para>
|
|
|
|
This operation should almost never be called directly, since no
|
|
|
|
attempt is made to verify that no references exist to the paths to
|
|
|
|
be deleted. Therefore, careless deletion can result in an
|
|
|
|
inconsistent system. Deletion of paths in the store is done by the
|
|
|
|
garbage collector (which uses <option>--delete</option> to delete
|
|
|
|
unreferenced paths).
|
|
|
|
</para>
|
|
|
|
</warning>
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
</refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
</refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
|
2003-11-26 12:24:13 +01:00
|
|
|
<!--######################################################################-->
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
<title>Operation <option>--query</option></title>
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
<title>Synopsis</title>
|
|
|
|
<cmdsynopsis>
|
2004-01-08 16:01:37 +01:00
|
|
|
<command>nix-store</command>
|
2003-11-26 12:24:13 +01:00
|
|
|
<group>
|
|
|
|
<arg><option>--query</option></arg>
|
|
|
|
<arg><option>-q</option></arg>
|
|
|
|
</group>
|
|
|
|
<group>
|
|
|
|
<group>
|
|
|
|
<arg><option>--list</option></arg>
|
|
|
|
<arg><option>-l</option></arg>
|
|
|
|
</group>
|
|
|
|
<group>
|
|
|
|
<arg><option>--requisites</option></arg>
|
2004-01-08 16:01:37 +01:00
|
|
|
<arg><option>-R</option></arg>
|
2003-11-26 12:24:13 +01:00
|
|
|
</group>
|
2004-01-08 16:01:37 +01:00
|
|
|
<arg><option>--predecessors</option></arg>
|
|
|
|
<arg><option>--graph</option></arg>
|
2003-11-26 12:24:13 +01:00
|
|
|
</group>
|
|
|
|
<arg choice='plain' rep='repeat'><replaceable>args</replaceable></arg>
|
|
|
|
</cmdsynopsis>
|
2004-01-08 16:01:37 +01:00
|
|
|
</refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
<title>Description</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The operation <option>--query</option> displays various bits of
|
2004-01-08 16:01:37 +01:00
|
|
|
information about store expressions or store paths. The queries
|
2003-11-26 12:24:13 +01:00
|
|
|
are described in <xref linkend='nixref-queries' />. At most one query
|
2004-01-08 16:01:37 +01:00
|
|
|
can be specified. The default query is <option>--list</option>.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
</refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
<refsection id='nixref-queries'>
|
2003-11-26 12:24:13 +01:00
|
|
|
<title>Queries</title>
|
|
|
|
|
|
|
|
<variablelist>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><option>--list</option></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
Prints out the <emphasis>output paths</emphasis> of the
|
|
|
|
store expressions indicated by the identifiers
|
|
|
|
<replaceable>args</replaceable>. In the case of a
|
|
|
|
derivation expression, these are the paths that will be
|
|
|
|
produced when the derivation is realised. In the case
|
|
|
|
of a closure expression, these are the paths that were
|
|
|
|
produced the derivation expression of which the closure
|
|
|
|
expression is a successor.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><option>--requisites</option></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
Prints out the requisite paths of the store expressions
|
|
|
|
indicated by the identifiers
|
|
|
|
<replaceable>args</replaceable>. The requisite paths of
|
|
|
|
a Nix expression are the paths that need to be present
|
|
|
|
in the system to be able to realise the expression.
|
|
|
|
That is, they form the <emphasis>closure</emphasis> of
|
|
|
|
the expression in the file system (i.e., no path in the
|
|
|
|
set of requisite paths points to anything outside the
|
|
|
|
set of requisite paths).
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
The notion of requisite paths is very useful when one
|
|
|
|
wants to distribute store expressions. Since they form a
|
|
|
|
closure, they are the only paths one needs to distribute
|
|
|
|
to another system to be able to realise the expression
|
|
|
|
on the other system.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
This query is generally used to implement various kinds
|
|
|
|
of deployment. A <emphasis>source deployment</emphasis>
|
|
|
|
is obtained by distributing the requisite paths of a
|
|
|
|
derivation expression. A <emphasis>binary
|
|
|
|
deployment</emphasis> is obtained by distributing the
|
|
|
|
requisite paths of a closure expression. A
|
|
|
|
<emphasis>cache deployment</emphasis> is obtained by
|
|
|
|
distributing the requisite paths of a derivation
|
|
|
|
expression and specifying the option
|
|
|
|
<option>--include-successors</option>. This will
|
|
|
|
include not just the paths of a source and binary
|
|
|
|
deployment, but also all expressions and paths of
|
|
|
|
subterms of the source. This is useful if one wants to
|
|
|
|
realise on the target system a Nix expression that is
|
|
|
|
similar but not quite the same as the one being
|
|
|
|
distributed, since any common subterms will be reused.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
This query has a number of options:
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<variablelist>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><option>--normalise</option></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
Causes the requisite paths of the
|
|
|
|
<emphasis>successor</emphasis> of the given store
|
|
|
|
expressions to be printed, rather than the
|
|
|
|
requisite paths of the expressions themselves.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><option>--exclude-exprs</option></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
Excludes the paths of store expressions. This
|
|
|
|
causes the closure property to be lost, that is,
|
|
|
|
the resulting set of paths is not enough to ensure
|
|
|
|
realisibility.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><option>--include-successors</option></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Also include the requisites of successors (normal forms).
|
|
|
|
Only the requisites of <emphasis>known</emphasis>
|
|
|
|
successors are included, i.e., the normal forms of
|
|
|
|
derivation expressions that have never been normalised will
|
|
|
|
not be included.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Note that not just the successor of a derivation expression
|
|
|
|
will be included, but also the successors of all input
|
|
|
|
expressions of that derivation expression. I.e., all
|
|
|
|
normal forms of subterms involved in the normalisation of
|
|
|
|
the top-level term are included.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
</variablelist>
|
|
|
|
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
2004-01-08 16:01:37 +01:00
|
|
|
<term><option>--predecessors</option></term>
|
2003-11-26 12:24:13 +01:00
|
|
|
<listitem>
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
For each store expression stored at paths
|
|
|
|
<replaceable>args</replaceable>, prints its
|
|
|
|
<emphasis>predecessors</emphasis>. A derivation
|
|
|
|
expression <varname>p</varname> is a predecessor of a
|
|
|
|
store expression <varname>q</varname> iff
|
|
|
|
<varname>q</varname> is a successor of
|
|
|
|
<varname>p</varname>.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><option>--graph</option></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2004-01-08 16:01:37 +01:00
|
|
|
Prints a graph of the closure of the store expressions
|
|
|
|
identified by <replaceable>args</replaceable> in the
|
|
|
|
format of the <command>dot</command> tool of AT&T's
|
|
|
|
GraphViz package.
|
2003-11-26 12:24:13 +01:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
</variablelist>
|
|
|
|
|
2004-01-08 16:01:37 +01:00
|
|
|
</refsection>
|
|
|
|
|
|
|
|
</refsection>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--######################################################################-->
|
|
|
|
|
|
|
|
<refsection>
|
|
|
|
<title>Operation <option>--successor</option></title>
|
|
|
|
|
|
|
|
<refsection>
|
|
|
|
<title>Synopsis</title>
|
|
|
|
<cmdsynopsis>
|
|
|
|
<command>nix-store</command>
|
|
|
|
<group>
|
|
|
|
<arg><option>--successor</option></arg>
|
|
|
|
</group>
|
|
|
|
<arg choice='plain'
|
|
|
|
rep='repeat'><replaceable>srcpath</replaceable> <replaceable>sucpath</replaceable></arg>
|
|
|
|
</cmdsynopsis>
|
|
|
|
</refsection>
|
|
|
|
|
|
|
|
<refsection>
|
|
|
|
<title>Description</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The operation <option>--successor</option> registers that the
|
|
|
|
closure expression in <replaceable>sucpath</replaceable> is a
|
|
|
|
successor of the derivation expression in
|
|
|
|
<replaceable>srcpath</replaceable>. This is used to implement
|
|
|
|
binary deployment.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
</refsection>
|
|
|
|
|
|
|
|
</refsection>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--######################################################################-->
|
|
|
|
|
|
|
|
<refsection>
|
|
|
|
<title>Operation <option>--substitute</option></title>
|
|
|
|
|
|
|
|
<refsection>
|
|
|
|
<title>Synopsis</title>
|
|
|
|
<cmdsynopsis>
|
|
|
|
<command>nix-store</command>
|
|
|
|
<group>
|
|
|
|
<arg><option>--substitute</option></arg>
|
|
|
|
</group>
|
|
|
|
<arg choice='plain'
|
|
|
|
rep='repeat'><replaceable>srcpath</replaceable> <replaceable>subpath</replaceable></arg>
|
|
|
|
</cmdsynopsis>
|
|
|
|
</refsection>
|
|
|
|
|
|
|
|
<refsection>
|
|
|
|
<title>Description</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The operation <option>--substitute</option> registers that the
|
|
|
|
store path <replaceable>srcpath</replaceable> can be built by
|
|
|
|
realising the derivation expression in
|
|
|
|
<replaceable>subpath</replaceable>. This is used to implement
|
|
|
|
binary deployment.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
</refsection>
|
|
|
|
|
|
|
|
</refsection>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--######################################################################-->
|
|
|
|
|
|
|
|
<refsection>
|
|
|
|
<title>Operation <option>--verify</option></title>
|
|
|
|
|
|
|
|
<refsection>
|
|
|
|
<title>Synopsis</title>
|
|
|
|
<cmdsynopsis>
|
|
|
|
<command>nix-store</command>
|
|
|
|
<group>
|
|
|
|
<arg><option>--verify</option></arg>
|
|
|
|
</group>
|
|
|
|
</cmdsynopsis>
|
|
|
|
</refsection>
|
|
|
|
|
|
|
|
<refsection>
|
|
|
|
<title>Description</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The operation <option>--verify</option> verifies the internal
|
|
|
|
consistency of the Nix database, and the consistency between
|
|
|
|
the Nix database and the Nix store. Any inconsistencies
|
|
|
|
encountered are automatically repaired. Inconsistencies are
|
|
|
|
generally the result of the Nix store or database being
|
|
|
|
modified by non-Nix tools, or of bugs in Nix itself.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
</refsection>
|
|
|
|
|
|
|
|
</refsection>
|
2003-11-26 12:24:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
local variables:
|
|
|
|
sgml-parent-document: ("book.xml" "refentry")
|
|
|
|
end:
|
|
|
|
-->
|