diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-05-09T23·06-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-05-09T23·06-0400 |
commit | 7a213ffc6912794d2cc4374bb9bf2c1f59a384a3 (patch) | |
tree | 9a1be50a6259941561f329115be685014cfe2b60 /doc | |
parent | a58efdb69b0c018322bb773ce14dc33cb252b165 (diff) |
Document $NIX_PATH / -I
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/env-common.xml | 59 | ||||
-rw-r--r-- | doc/manual/opt-common-syn.xml | 10 | ||||
-rw-r--r-- | doc/manual/opt-common.xml | 10 |
3 files changed, 66 insertions, 13 deletions
diff --git a/doc/manual/env-common.xml b/doc/manual/env-common.xml index edfded7fcb4f..c4c0f9d2df63 100644 --- a/doc/manual/env-common.xml +++ b/doc/manual/env-common.xml @@ -10,6 +10,40 @@ <variablelist xml:id="env-common"> +<varlistentry><term><envar>NIX_PATH</envar></term> + + <listitem> + + <para>A colon-separated list of directories used to look up Nix + expressions enclosed in angle brackets (i.e., + <literal><<replaceable>path</replaceable>></literal>). For + instance, the value + + <screen> +/home/eelco/Dev:/etc/nixos</screen> + + will cause Nix to look for paths relative to + <filename>/home/eelco/Dev</filename> and + <filename>/etc/nixos</filename>, in that order. It is also + possible to match paths against a prefix. For example, the value + + <screen> +nixpkgs=/home/eelco/Dev/nixpkgs-branch:/etc/nixos</screen> + + will cause Nix to search for + <literal><nixpkgs/<replaceable>path</replaceable>></literal> in + <filename>/home/eelco/Dev/nixpkgs-branch/<replaceable>path</replaceable></filename> + and + <filename>/etc/nixos/nixpkgs/<replaceable>path</replaceable></filename>. + </para> + + <para>The search path can be extended using the + <option>-I</option> option, which takes precedence over + <envar>NIX_PATH</envar>.</para></listitem> + +</varlistentry> + + <varlistentry><term><envar>NIX_IGNORE_SYMLINK_STORE</envar></term> <listitem> @@ -120,9 +154,12 @@ $ mount -o bind /mnt/otherdisk/nix /nix</screen> which is a program (typically some script) that Nix will call whenever it wants to build a derivation. This is used to implement distributed builds<phrase condition="manual"> (see <xref - linkend="chap-distributed-builds" />)</phrase>. The protocol by + linkend="chap-distributed-builds" />)</phrase>.</para> + + <!-- + The protocol by which the calling Nix process and the build hook communicate is as - follows.</para> + follows. <para>The build hook is called with the following command-line arguments: @@ -132,7 +169,7 @@ $ mount -o bind /mnt/otherdisk/nix /nix</screen> <listitem><para>A boolean value <literal>0</literal> or <literal>1</literal> specifying whether Nix can locally execute more builds, as per the <link - linkend="opt-max-jobs"><option>--max-jobs</option> option</link>. + linkend="opt-max-jobs"><option>- -max-jobs</option> option</link>. The purpose of this argument is to allow the hook to not have to maintain bookkeeping for the local machine.</para></listitem> @@ -217,7 +254,7 @@ $ mount -o bind /mnt/otherdisk/nix /nix</screen> <listitem><para>The reference graph of the inputs, in the format accepted by the command <command>nix-store - --register-validity</command>. It is necessary to run this + - -register-validity</command>. It is necessary to run this command on the remote machine after copying the inputs to inform Nix on the remote machine that the inputs are valid paths.</para></listitem> @@ -234,6 +271,7 @@ $ mount -o bind /mnt/otherdisk/nix /nix</screen> <literal>0</literal> indicates that the hook has failed. An exit code equal to 100 means that the remote build failed (as opposed to, e.g., a network error).</para> + --> </listitem> @@ -256,12 +294,13 @@ $ mount -o bind /mnt/otherdisk/nix /nix</screen> <listitem><para>This variable contains the paths of remote Nix installations from whichs paths can be copied, separated by colons. - See <xref linkend="sec-sharing-packages" /> for details. Each path - should be the <filename>/nix</filename> directory of a remote Nix - installation (i.e., not the <filename>/nix/store</filename> - directory). The paths are subject to globbing, so you can set it so - something like <literal>/var/run/nix/remote-stores/*/nix</literal> - and mount multiple remote filesystems in + <phrase condition="manual">See <xref linkend="sec-sharing-packages" + /> for details.</phrase> Each path should be the + <filename>/nix</filename> directory of a remote Nix installation + (i.e., not the <filename>/nix/store</filename> directory). The + paths are subject to globbing, so you can set it so something like + <literal>/var/run/nix/remote-stores/*/nix</literal> and mount + multiple remote filesystems in <literal>/var/run/nix/remote-stores</literal>.</para> <para>Note that if you’re building through the <link diff --git a/doc/manual/opt-common-syn.xml b/doc/manual/opt-common-syn.xml index 23bd36dd6bf0..6628fde93516 100644 --- a/doc/manual/opt-common-syn.xml +++ b/doc/manual/opt-common-syn.xml @@ -14,15 +14,15 @@ <replaceable>number</replaceable> </arg> <arg> - <arg><option>--cores</option></arg> + <option>--cores</option> <replaceable>number</replaceable> </arg> <arg> - <arg><option>--max-silent-time</option></arg> + <option>--max-silent-time</option> <replaceable>number</replaceable> </arg> <arg> - <arg><option>--timeout</option></arg> + <option>--timeout</option> <replaceable>number</replaceable> </arg> <arg><option>--keep-going</option></arg> @@ -33,6 +33,10 @@ <arg><option>--readonly-mode</option></arg> <arg><option>--log-type</option> <replaceable>type</replaceable></arg> <arg><option>--show-trace</option></arg> +<arg> + <option>-I</option> + <replaceable>path</replaceable> +</arg> <sbr /> </nop> diff --git a/doc/manual/opt-common.xml b/doc/manual/opt-common.xml index 92b76c01f103..b9df23dcfbe9 100644 --- a/doc/manual/opt-common.xml +++ b/doc/manual/opt-common.xml @@ -341,6 +341,16 @@ </varlistentry> +<varlistentry><term><option>-I</option> <replaceable>path</replaceable></term> + + <listitem><para>Add a path to the Nix expression search path. See + the <envar>NIX_PATH</envar> environment variable for details. Paths + added through <option>-I</option> take precedence over + <envar>NIX_PATH</envar>.</para></listitem> + +</varlistentry> + + </variablelist> |