* Manual updates, some style improvements.

This commit is contained in:
Eelco Dolstra 2006-09-29 10:31:56 +00:00
parent e2eed05224
commit 30c7db85d8
6 changed files with 74 additions and 52 deletions

View File

@ -4,7 +4,8 @@ XSLTPROC = $(xsltproc) $(xmlflags) \
--param section.label.includes.component.label 1 \ --param section.label.includes.component.label 1 \
--param html.stylesheet \'style.css\' \ --param html.stylesheet \'style.css\' \
--param xref.with.number.and.title 1 \ --param xref.with.number.and.title 1 \
--param toc.section.depth 3 --param toc.section.depth 3 \
--param admon.style \'\'
man1_MANS = nix-env.1 nix-build.1 nix-store.1 nix-instantiate.1 \ man1_MANS = nix-env.1 nix-build.1 nix-store.1 nix-instantiate.1 \
nix-collect-garbage.1 nix-push.1 nix-pull.1 \ nix-collect-garbage.1 nix-push.1 nix-pull.1 \

View File

@ -8,9 +8,10 @@
<section><info><title>Obtaining Nix</title></info> <section><info><title>Obtaining Nix</title></info>
<para>The easiest way to obtain Nix is to download a <link xlink:href="http://www.cs.uu.nl/groups/ST/Trace/Nix">source <para>The easiest way to obtain Nix is to download a <link
distribution</link>. RPMs for Red Hat, SuSE, and Fedore Core are xlink:href="http://www.cs.uu.nl/groups/ST/Trace/Nix">source
also available.</para> distribution</link>. RPMs for Red Hat, SuSE, and Fedora Core are also
available.</para>
<para>Alternatively, the most recent sources of Nix can be obtained <para>Alternatively, the most recent sources of Nix can be obtained
from its <link from its <link
@ -34,8 +35,9 @@ tar-file</link> of the head revision of the trunk.</para>
<section><info><title>Prerequisites</title></info> <section><info><title>Prerequisites</title></info>
<para>The following prerequisites only apply when you build from <para><emphasis>The following prerequisites only apply when you build
source. Binary releases (e.g., RPMs) have no prerequisites.</para> from source</emphasis>. Binary releases (e.g., RPMs) have no
prerequisites.</para>
<para>A fairly recent version of GCC/G++ is required. Version 2.95 <para>A fairly recent version of GCC/G++ is required. Version 2.95
and higher should work.</para> and higher should work.</para>
@ -47,9 +49,9 @@ which are part of the <literal>libxml2</literal> and
<link <link
xlink:href="http://docbook.sourceforge.net/projects/xsl/">DocBook XSL xlink:href="http://docbook.sourceforge.net/projects/xsl/">DocBook XSL
stylesheets</link> and optionally the <link stylesheets</link> and optionally the <link
xlink:href="http://www.oasis-open.org/docbook/xml/4.2/docbook-xml-4.2.zip"> xlink:href="http://www.docbook.org/schemas/5x"> DocBook 5.0 RELAX NG
DocBook XML 4.2 DTD</link>. Note that these are only required if you schemas</link>. Note that these are only required if you modify the
modify the manual sources or when you are building from the Subversion manual sources or when you are building from the Subversion
repository.</para> repository.</para>
<para>To build the parser, very <emphasis>recent</emphasis> versions <para>To build the parser, very <emphasis>recent</emphasis> versions
@ -103,15 +105,15 @@ $ autoreconf -i</screen>
like. You must have write permission to the like. You must have write permission to the
<replaceable>prefix</replaceable> path.</para> <replaceable>prefix</replaceable> path.</para>
<warning><para>It is advisable <emphasis>not</emphasis> to change the <warning><para>It is best <emphasis>not</emphasis> to change the
installation prefix from its default, since doing so will in all installation prefix from its default, since doing so makes it
likelihood make it impossible to use derivations built on other impossible to use pre-built binaries from the standard Nixpkgs
systems.</para></warning> channels.</para></warning>
<para>If you want to rebuilt the documentation, pass the full path to <para>If you want to rebuilt the documentation, pass the full path to
the DocBook XML catalog file (<filename>docbook.cat</filename>) and to the DocBook RELAX NG schemas and to the DocBook XSL stylesheets using
the DocBook XSL stylesheets using the the
<option>--with-docbook-catalog=<replaceable>path</replaceable></option> <option>--with-docbook-rng=<replaceable>path</replaceable></option>
and and
<option>--with-docbook-xsl=<replaceable>path</replaceable></option> <option>--with-docbook-xsl=<replaceable>path</replaceable></option>
options.</para> options.</para>

View File

@ -45,7 +45,7 @@ another machine:
<screen> <screen>
$ nix-pack-closure /nix/store/hj232g1r...-subversion-1.3.0 > svn.closure $ nix-pack-closure /nix/store/hj232g1r...-subversion-1.3.0 > svn.closure
<lineannotation>Copy <!-- !!! <filename> --> svn.closure to the remote machine, then on the remote machine do:</lineannotation> <lineannotation>Copy <!-- !!! <filename> -->svn.closure to the remote machine, then on the remote machine do:</lineannotation>
$ nix-unpack-closure &lt; svn.closure</screen> $ nix-unpack-closure &lt; svn.closure</screen>
</para> </para>

View File

@ -10,7 +10,6 @@ body
{ {
font-family: sans-serif; font-family: sans-serif;
background: white; background: white;
margin: 2em 1em 2em 1em; margin: 2em 1em 2em 1em;
} }
@ -34,7 +33,6 @@ h2 /* chapters, appendices, subtitle */
div.chapter > div.titlepage h2, div.appendix > div.titlepage h2 div.chapter > div.titlepage h2, div.appendix > div.titlepage h2
{ {
margin-top: 1.5em; margin-top: 1.5em;
/* border-top: solid #005aa0; */
} }
div.sect1 h2 /* sections */ div.sect1 h2 /* sections */
@ -42,6 +40,12 @@ div.sect1 h2 /* sections */
font-size: 150%; font-size: 150%;
} }
/* Extra space between sections. */
div.section > div.titlepage h2
{
margin-top: 1.2em;
}
div.refnamediv h2, div.refsynopsisdiv h2, div.refsection h2 /* refentry parts */ div.refnamediv h2, div.refsynopsisdiv h2, div.refsection h2 /* refentry parts */
{ {
font-size: 125%; font-size: 125%;
@ -67,8 +71,8 @@ div.example
{ {
border: 1px solid #6185a0; border: 1px solid #6185a0;
padding: 6px 6px; padding: 6px 6px;
margin-left: 3em; margin-left: 0em;
margin-right: 3em; margin-right: 0em;
background: #eeeeee; background: #eeeeee;
} }
@ -86,9 +90,9 @@ pre.programlisting
pre.screen pre.screen
{ {
border: 1px solid #6185a0; border: 1px solid #6185a0;
padding: 6px 6px; padding: 3px 3px;
margin-left: 3em; margin-left: 1.5em;
margin-right: 3em; margin-right: 1.5em;
color: #600000; color: #600000;
background: #eeeeee; background: #eeeeee;
font-family: monospace; font-family: monospace;
@ -100,24 +104,39 @@ pre.screen
Notes, warnings etc: Notes, warnings etc:
***************************************************************************/ ***************************************************************************/
.note,.warning .note, .warning
{ {
margin-top: 1em;
margin-bottom: 1em;
border: 1px solid #6185a0; border: 1px solid #6185a0;
padding: 0px 1em; padding: 3px 3px;
margin-left: 1.5em;
margin-right: 1.5em;
margin-bottom: 1em;
padding: 0.3em 0.3em 0.3em 0.3em;
background: #fffff5; background: #fffff5;
} }
div.note,div.warning div.note, div.warning
{ {
font-style: italic; font-style: italic;
} }
div.warning h3 div.note h3, div.warning h3
{ {
color: red; color: red;
font-size: 100%; font-size: 100%;
// margin: 0 0 0 0;
padding-right: 0.5em;
display: inline;
}
div.note p, div.warning p
{
margin-bottom: 0em;
}
div.note h3 + p, div.warning h3 + p
{
display: inline;
} }
div.note h3 div.note h3

View File

@ -7,7 +7,7 @@
<para>This section provides solutions for some common problems.</para> <para>This section provides solutions for some common problems.</para>
<sect1><title>Berkeley DB: <quote>Cannot allocate memory</quote></title> <section><title>Berkeley DB: <quote>Cannot allocate memory</quote></title>
<para>Symptom: Nix operations (in particular the <para>Symptom: Nix operations (in particular the
<command>nix-store</command> operations <option>--gc</option>, <command>nix-store</command> operations <option>--gc</option>,
@ -30,10 +30,10 @@ $ rm __db.00*</screen>
</para> </para>
</sect1> </section>
<sect1><title>Collisions in <command>nix-env</command></title> <section><title>Collisions in <command>nix-env</command></title>
<para>Symptom: when installing or upgrading, you get an error message such as <para>Symptom: when installing or upgrading, you get an error message such as
@ -69,10 +69,10 @@ to implement some conflict resolution policy. E.g., the script could
be modified to rename conflicting file names, or to pick one over the be modified to rename conflicting file names, or to pick one over the
other.</para> other.</para>
</sect1> </section>
<sect1><title><quote>Too many links</quote> error in the Nix <section><title><quote>Too many links</quote> error in the Nix
store</title> store</title>
@ -108,7 +108,7 @@ more than 32,000 subdirectories per directory, such as ReiserFS.
ReiserFS lies to the kernel by reporting a link count of 1 if it ReiserFS lies to the kernel by reporting a link count of 1 if it
exceeds the limit.)</para> exceeds the limit.)</para>
</sect1> </section>

View File

@ -11,7 +11,7 @@ simple example (a Nix expression for GNU Hello), and then moves
on to a more in-depth look at the Nix expression language.</para> on to a more in-depth look at the Nix expression language.</para>
<sect1><title>A simple Nix expression</title> <section><title>A simple Nix expression</title>
<para>This section shows how to add and test the <link <para>This section shows how to add and test the <link
xlink:href='http://www.gnu.org/software/hello/hello.html'>GNU Hello xlink:href='http://www.gnu.org/software/hello/hello.html'>GNU Hello
@ -47,7 +47,7 @@ need to do three things:
</para> </para>
<sect2><title>The Nix expression</title> <section><title>The Nix expression</title>
<example xml:id='ex-hello-nix'><title>Nix expression for GNU Hello <example xml:id='ex-hello-nix'><title>Nix expression for GNU Hello
(<filename>default.nix</filename>)</title> (<filename>default.nix</filename>)</title>
@ -188,10 +188,10 @@ perl = perl;</programlisting>
</para> </para>
</sect2> </section>
<sect2><title>The builder</title> <section><title>The builder</title>
<example xml:id='ex-hello-builder'><title>Build script for GNU Hello <example xml:id='ex-hello-builder'><title>Build script for GNU Hello
(<filename>builder.sh</filename>)</title> (<filename>builder.sh</filename>)</title>
@ -303,10 +303,10 @@ shell script is evaluated with Bash's <option>-e</option> option,
which causes the script to be aborted if any command fails without an which causes the script to be aborted if any command fails without an
error check.</para> error check.</para>
</sect2> </section>
<sect2><title>Composition</title> <section><title>Composition</title>
<example xml:id='ex-hello-composition'><title>Composing GNU Hello <example xml:id='ex-hello-composition'><title>Composing GNU Hello
(<filename>all-packages-generic.nix</filename>)</title> (<filename>all-packages-generic.nix</filename>)</title>
@ -401,10 +401,10 @@ some fragments of
</calloutlist> </calloutlist>
</sect2> </section>
<sect2><title>Testing</title> <section><title>Testing</title>
<para>You can now try to build Hello. The simplest way to do that is <para>You can now try to build Hello. The simplest way to do that is
by using <command>nix-env</command>: by using <command>nix-env</command>:
@ -501,10 +501,10 @@ Just pass the option <option>-j <replaceable>N</replaceable></option>,
where <replaceable>N</replaceable> is the maximum number of jobs to be where <replaceable>N</replaceable> is the maximum number of jobs to be
run in parallel. Typically this should be the number of CPUs.</para> run in parallel. Typically this should be the number of CPUs.</para>
</sect2> </section>
<sect2><title>The generic builder</title> <section><title>The generic builder</title>
<para>Recall from <xref linkend='ex-hello-builder' /> that the builder <para>Recall from <xref linkend='ex-hello-builder' /> that the builder
looked something like this: looked something like this:
@ -587,14 +587,14 @@ In fact, <varname>mkDerivation</varname> provides a default builder
that looks exactly like that, so it is actually possible to omit the that looks exactly like that, so it is actually possible to omit the
builder for Hello entirely.</para> builder for Hello entirely.</para>
</sect2> </section>
</sect1> </section>
<sect1><title>The Nix expression language</title> <section><title>The Nix expression language</title>
<para>The Nix expression language is a pure, lazy, functional <para>The Nix expression language is a pure, lazy, functional
language. Purity means that operations in the language don't have language. Purity means that operations in the language don't have
@ -1290,11 +1290,11 @@ character, or inline/multi-line, enclosed within <literal>/*
</simplesect> </simplesect>
</sect1> </section>
<sect1 xml:id='sec-standard-environment'><title>The standard environment</title> <section xml:id='sec-standard-environment'><title>The standard environment</title>
<para>The standard build environment in the Nix Packages collection <para>The standard build environment in the Nix Packages collection
provides a basic environment for building Unix packages. It consists provides a basic environment for building Unix packages. It consists
@ -1547,7 +1547,7 @@ $ make
is the source itself, which resides in is the source itself, which resides in
<filename>pkgs/stdenv/generic/setup.sh</filename>.</para> <filename>pkgs/stdenv/generic/setup.sh</filename>.</para>
</sect1> </section>
</chapter> </chapter>