Fix indentation

This commit is contained in:
Eelco Dolstra 2012-05-11 18:25:56 -04:00
parent 770bc15848
commit 4ad8912aa3
2 changed files with 67 additions and 65 deletions

View File

@ -14,13 +14,13 @@
To install and use Hydra you need to have installed the following dependencies: To install and use Hydra you need to have installed the following dependencies:
<itemizedlist> <itemizedlist>
<listitem>Nix</listitem> <listitem><para>Nix</para></listitem>
<listitem>either PostgreSQL or SQLite</listitem> <listitem><para>either PostgreSQL or SQLite</para></listitem>
<listitem>many Perl packages, notably Catalyst, EmailSender, <listitem><para>many Perl packages, notably Catalyst, EmailSender,
and NixPerl (see the <link and NixPerl (see the <link
xlink:href="https://svn.nixos.org/repos/nix/nixpkgs/trunk/pkgs/development/tools/misc/hydra/default.nix">Hydra xlink:href="https://svn.nixos.org/repos/nix/nixpkgs/trunk/pkgs/development/tools/misc/hydra/default.nix">Hydra
expression in Nixpkgs</link> for the complete expression in Nixpkgs</link> for the complete
list).</listitem> list)</para></listitem>
</itemizedlist> </itemizedlist>
At the moment, Hydra runs only on GNU/Linux At the moment, Hydra runs only on GNU/Linux
@ -46,13 +46,13 @@
</para> </para>
<para> <para>
Of course we think it is a good idea to use the <a Of course we think it is a good idea to use the <link
href="http://nixos.org/nixos">NixOS</a> GNU/Linux distribution xlink:href="http://nixos.org/nixos">NixOS</link> GNU/Linux
for your buildfarm server. But this is not a requirement. The distribution for your buildfarm server. But this is not a
Nix software deployment system can be installed on any GNU/Linux requirement. The Nix software deployment system can be
distribution in parallel to the regular package management installed on any GNU/Linux distribution in parallel to the
system. Thus, you can use Hydra on a Debian, Fedora, SuSE, or regular package management system. Thus, you can use Hydra on a
Ubuntu system. Debian, Fedora, SuSE, or Ubuntu system.
</para> </para>
</section> </section>

View File

@ -454,7 +454,8 @@ in
name = "hello"; name = "hello";
src = tarball; src = tarball;
configureFlags = [ "--disable-silent-rules" ]; configureFlags = [ "--disable-silent-rules" ];
}; </programlisting> };
</programlisting>
As can be seen, the only difference compared to As can be seen, the only difference compared to
<varname>build</varname> is the use of <varname>build</varname> is the use of
@ -494,7 +495,8 @@ in
preConfigure = "gcc --version"; preConfigure = "gcc --version";
configureFlags = configureFlags =
attrs.configureFlags ++ [ "--disable-nls" ]; attrs.configureFlags ++ [ "--disable-nls" ];
}); </programlisting> });
</programlisting>
The <varname>build_exotic</varname> job reuses The <varname>build_exotic</varname> job reuses
<varname>build</varname> and overrides some of its arguments: it <varname>build</varname> and overrides some of its arguments: it