summary refs log tree commit diff
path: root/doc/using/configuration.xml
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-07-05 17:51:30 +0200
committerJan Tojnar <jtojnar@gmail.com>2020-07-05 17:51:30 +0200
commit13b5ae55cdab62aac087d4a2885634983eb79b06 (patch)
treeb8021cef9b286502314f576bbaf0df219c02924c /doc/using/configuration.xml
parentfbf553ea2b02cef3962480ed1929573de4429b56 (diff)
downloadnixpkgs-13b5ae55cdab62aac087d4a2885634983eb79b06.tar
nixpkgs-13b5ae55cdab62aac087d4a2885634983eb79b06.tar.gz
nixpkgs-13b5ae55cdab62aac087d4a2885634983eb79b06.tar.bz2
nixpkgs-13b5ae55cdab62aac087d4a2885634983eb79b06.tar.lz
nixpkgs-13b5ae55cdab62aac087d4a2885634983eb79b06.tar.xz
nixpkgs-13b5ae55cdab62aac087d4a2885634983eb79b06.tar.zst
nixpkgs-13b5ae55cdab62aac087d4a2885634983eb79b06.zip
licenses: Make single-version-only GPL explicit
I commonly see people use the former when they should use the latter.

Would be also in line with the SPDX change https://www.gnu.org/licenses/identify-licenses-clearly.html
Diffstat (limited to 'doc/using/configuration.xml')
-rw-r--r--doc/using/configuration.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/using/configuration.xml b/doc/using/configuration.xml
index 690bb3d34a1..b670f78f28b 100644
--- a/doc/using/configuration.xml
+++ b/doc/using/configuration.xml
@@ -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>