summary refs log tree commit diff
path: root/lib/licenses.nix
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@gmail.com>2018-02-17 13:13:26 -0200
committerGitHub <noreply@github.com>2018-02-17 13:13:26 -0200
commitef5860db3ea9bcdc8e12ff06ccc5bbbd9a0dca68 (patch)
treed466a81693af8a10311e989fa887580014b3a6ed /lib/licenses.nix
parent7f87513e9059a7a69ad59a89631f119c3ee5ece9 (diff)
parent4a553dc247e80b3361da31cff4e25d62a60a75b4 (diff)
downloadnixpkgs-ef5860db3ea9bcdc8e12ff06ccc5bbbd9a0dca68.tar
nixpkgs-ef5860db3ea9bcdc8e12ff06ccc5bbbd9a0dca68.tar.gz
nixpkgs-ef5860db3ea9bcdc8e12ff06ccc5bbbd9a0dca68.tar.bz2
nixpkgs-ef5860db3ea9bcdc8e12ff06ccc5bbbd9a0dca68.tar.lz
nixpkgs-ef5860db3ea9bcdc8e12ff06ccc5bbbd9a0dca68.tar.xz
nixpkgs-ef5860db3ea9bcdc8e12ff06ccc5bbbd9a0dca68.tar.zst
nixpkgs-ef5860db3ea9bcdc8e12ff06ccc5bbbd9a0dca68.zip
Merge pull request #33446 from AndersonTorres/upload-jwasm
Jwasm: init at git-2017-11-22
Diffstat (limited to 'lib/licenses.nix')
-rw-r--r--lib/licenses.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/licenses.nix b/lib/licenses.nix
index 2262ae9ebbc..e03ed38eb5e 100644
--- a/lib/licenses.nix
+++ b/lib/licenses.nix
@@ -2,7 +2,7 @@
 let
 
   spdx = lic: lic // {
-    url = "http://spdx.org/licenses/${lic.spdxId}";
+    url = "http://spdx.org/licenses/${lic.spdxId}.html";
   };
 
 in
@@ -580,6 +580,11 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
     fullName = "Vovida Software License v1.0";
   };
 
+  watcom = spdx {
+    spdxId = "Watcom-1.0";
+    fullName = "Sybase Open Watcom Public License 1.0";
+  };
+
   w3c = spdx {
     spdxId = "W3C";
     fullName = "W3C Software Notice and License";
@@ -614,5 +619,4 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
     spdxId = "ZPL-2.1";
     fullName = "Zope Public License 2.1";
   };
-
 }