Strip indentation from programlistings

This commit is contained in:
Eelco Dolstra 2015-06-03 17:04:26 +02:00
parent 35ff30c73f
commit 07b212b09d

View File

@ -620,25 +620,30 @@ evaluate correctly.</para>
fetchers from <literal>pkgs/build-support/</literal>. As an example going fetchers from <literal>pkgs/build-support/</literal>. As an example going
from bad to good: from bad to good:
<itemizedlist> <itemizedlist>
<listitem><para>Uses <literal>git://</literal> which won't be proxied. <listitem>
<para>Uses <literal>git://</literal> which won't be proxied.
<programlisting> <programlisting>
src = fetchgit { src = fetchgit {
url = "git://github.com/NixOS/nix.git"; url = "git://github.com/NixOS/nix.git";
rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae"; rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae";
sha256 = "1cw5fszffl5pkpa6s6wjnkiv6lm5k618s32sp60kvmvpy7a2v9kg"; sha256 = "1cw5fszffl5pkpa6s6wjnkiv6lm5k618s32sp60kvmvpy7a2v9kg";
} }
</programlisting></para> </programlisting>
</para>
</listitem> </listitem>
<listitem><para>This is ok, but an archive fetch will still be faster. <listitem>
<para>This is ok, but an archive fetch will still be faster.
<programlisting> <programlisting>
src = fetchgit { src = fetchgit {
url = "https://github.com/NixOS/nix.git"; url = "https://github.com/NixOS/nix.git";
rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae"; rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae";
sha256 = "1cw5fszffl5pkpa6s6wjnkiv6lm5k618s32sp60kvmvpy7a2v9kg"; sha256 = "1cw5fszffl5pkpa6s6wjnkiv6lm5k618s32sp60kvmvpy7a2v9kg";
} }
</programlisting></para> </programlisting>
</para>
</listitem> </listitem>
<listitem><para>Fetches a snapshot archive and you get the rev you want. <listitem>
<para>Fetches a snapshot archive and you get the rev you want.
<programlisting> <programlisting>
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "NixOS"; owner = "NixOS";
@ -646,7 +651,8 @@ evaluate correctly.</para>
rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae"; rev = "1f795f9f44607cc5bec70d1300150bfefcef2aae";
sha256 = "04yri911rj9j19qqqn6m82266fl05pz98inasni0vxr1cf1gdgv9"; sha256 = "04yri911rj9j19qqqn6m82266fl05pz98inasni0vxr1cf1gdgv9";
} }
</programlisting></para> </programlisting>
</para>
</listitem> </listitem>
</itemizedlist> </itemizedlist>
</para> </para>