about summary refs log tree commit diff
path: root/pkgs/lib
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-07-03 12:41:27 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-07-03 12:41:27 +0200
commit80213cbb051f2e172be20c03e51069f122d8bb6c (patch)
treea1f3894a021188036daddf4629bc3b2227ef6ae2 /pkgs/lib
parente84ba407f9ca49320d50e1a4db60923fb4062dfd (diff)
meta.license is a list of strings (not attribute sets)
http://hydra.nixos.org/build/5453648
Diffstat (limited to 'pkgs/lib')
-rw-r--r--pkgs/lib/licenses.nix21
1 files changed, 4 insertions, 17 deletions
diff --git a/pkgs/lib/licenses.nix b/pkgs/lib/licenses.nix
index 0669bc3f5c302..f6c1fddfd1439 100644
--- a/pkgs/lib/licenses.nix
+++ b/pkgs/lib/licenses.nix
@@ -4,8 +4,7 @@
    * add it to this list. The URL mentioned above is a good source for inspiration.
    */
 
-  agpl3 = {
-    shortName = "AGPLv3";
+  agpl3 = "AGPLv3";
     fullName = "GNU Affero General Public License version 3 only";
     url = https://www.gnu.org/licenses/agpl.html;
   };
@@ -76,11 +75,7 @@
     url = http://www.eclipse.org/legal/epl-v10.html;
   };
 
-  gpl2 = {
-    shortName = "GPLv2";
-    fullName = "GNU General Public License version 2 only";
-    url = http://www.gnu.org/licenses/old-licenses/gpl-2.0.html;
-  };
+  gpl2 = "GPLv2";
 
   gpl2Oss = {
     shortName = "GPLv2+OSS";
@@ -136,11 +131,7 @@
     url = https://fedoraproject.org/wiki/Licensing/libtiff;
   };
 
-  lgpl2 = {
-    shortName = "LGPLv2";
-    fullName = "GNU Library General Public License version 2";
-    url = http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html;
-  };
+  lgpl2 = "LGPLv2";
 
   lgpl2Plus = {
     shortName = "LGPLv2+";
@@ -148,11 +139,7 @@
     url = http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html;
   };
 
-  lgpl21 = {
-    shortName = "LGPLv2.1";
-    fullName = "GNU Lesser General Public License version 2.1 only";
-    url = http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html;
-  };
+  lgpl21 = "LGPLv2.1";
 
   lgpl21Plus = {
     shortName = "LGPLv2.1+";