summary refs log tree commit diff
path: root/doc/using/configuration.xml
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-07-02 17:14:26 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-07-02 17:14:26 +0200
commit3ee58112693c11cd8157495e09714cf9ddb599b3 (patch)
tree2d904d7f8f81bfe7ebb43b22c19ea1c830dcbd22 /doc/using/configuration.xml
parentb4a880427e4ac548ad009fda472a4b308de090ae (diff)
parenta54cd1cace0d063393ff0e57d8555bc0c51ef441 (diff)
downloadnixpkgs-3ee58112693c11cd8157495e09714cf9ddb599b3.tar
nixpkgs-3ee58112693c11cd8157495e09714cf9ddb599b3.tar.gz
nixpkgs-3ee58112693c11cd8157495e09714cf9ddb599b3.tar.bz2
nixpkgs-3ee58112693c11cd8157495e09714cf9ddb599b3.tar.lz
nixpkgs-3ee58112693c11cd8157495e09714cf9ddb599b3.tar.xz
nixpkgs-3ee58112693c11cd8157495e09714cf9ddb599b3.tar.zst
nixpkgs-3ee58112693c11cd8157495e09714cf9ddb599b3.zip
Merge master into staging-next
Diffstat (limited to 'doc/using/configuration.xml')
-rw-r--r--doc/using/configuration.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/using/configuration.xml b/doc/using/configuration.xml
index f19eddb5868..690bb3d34a1 100644
--- a/doc/using/configuration.xml
+++ b/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;