aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/doc/using/configuration.xml
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/doc/using/configuration.xml')
-rw-r--r--nixpkgs/doc/using/configuration.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/nixpkgs/doc/using/configuration.xml b/nixpkgs/doc/using/configuration.xml
index f4d6e911006..b670f78f28b 100644
--- a/nixpkgs/doc/using/configuration.xml
+++ b/nixpkgs/doc/using/configuration.xml
@@ -85,19 +85,19 @@
<title>Installing packages on unsupported systems</title>
<para>
- There are also two ways to try compiling a package which has been marked as unsuported for the given system.
+ There are also two ways to try compiling a package which has been marked as unsupported for the given system.
</para>
<itemizedlist>
<listitem>
<para>
- For allowing the build of a broken package once, you can use an environment variable for a single invocation of the nix tools:
+ For allowing the build of an unsupported package once, you can use an environment variable for a single invocation of the nix tools:
<programlisting>$ export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1</programlisting>
</para>
</listitem>
<listitem>
<para>
- For permanently allowing broken packages to be built, you may add <literal>allowUnsupportedSystem = true;</literal> to your user's configuration file, like this:
+ For permanently allowing unsupported packages to be built, you may add <literal>allowUnsupportedSystem = true;</literal> to your user's configuration file, like this:
<programlisting>
{
allowUnsupportedSystem = true;
@@ -162,10 +162,10 @@
</programlisting>
</para>
<para>
- The following example configuration blacklists the <literal>gpl3</literal> and <literal>agpl3</literal> licenses:
+ The following example configuration blacklists the <literal>gpl3Only</literal> and <literal>agpl3Only</literal> licenses:
<programlisting>
{
- blacklistedLicenses = with stdenv.lib.licenses; [ agpl3 gpl3 ];
+ blacklistedLicenses = with stdenv.lib.licenses; [ agpl3Only gpl3Only ];
}
</programlisting>
</para>
@@ -387,7 +387,7 @@ fi
</screen>
<para>
- Now just run <literal>source $HOME/.profile</literal> and you can starting loading man pages from your environent.
+ Now just run <literal>source $HOME/.profile</literal> and you can starting loading man pages from your environment.
</para>
</section>