about summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-11-14 23:42:23 +0100
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-11-15 09:05:02 +0100
commit142717e3ab16f7c822980333474c398fb6ee1060 (patch)
tree80c451f0917b5022b5165816436ed1d1648b6cb9 /pkgs/tools/typesetting
parentd458a1869f0f13ea978fbe1534dbc6416f043949 (diff)
downloadnixlib-142717e3ab16f7c822980333474c398fb6ee1060.tar
nixlib-142717e3ab16f7c822980333474c398fb6ee1060.tar.gz
nixlib-142717e3ab16f7c822980333474c398fb6ee1060.tar.bz2
nixlib-142717e3ab16f7c822980333474c398fb6ee1060.tar.lz
nixlib-142717e3ab16f7c822980333474c398fb6ee1060.tar.xz
nixlib-142717e3ab16f7c822980333474c398fb6ee1060.tar.zst
nixlib-142717e3ab16f7c822980333474c398fb6ee1060.zip
pgf: add license
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/pgf/1.x.nix5
-rw-r--r--pkgs/tools/typesetting/tex/pgf/2.x.nix5
-rw-r--r--pkgs/tools/typesetting/tex/pgf/3.x.nix5
3 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/tools/typesetting/tex/pgf/1.x.nix b/pkgs/tools/typesetting/tex/pgf/1.x.nix
index de5ef2abccfb..9215a1e0ac48 100644
--- a/pkgs/tools/typesetting/tex/pgf/1.x.nix
+++ b/pkgs/tools/typesetting/tex/pgf/1.x.nix
@@ -15,8 +15,9 @@ stdenv.mkDerivation {
     cp -prd * $out/share/texmf-nix
   ";
 
-  meta = {
+  meta = with stdenv.lib; {
     branch = "1";
-    platforms = stdenv.lib.platforms.unix;
+    platforms = platforms.unix;
+    license = licenses.gpl2;
   };
 }
diff --git a/pkgs/tools/typesetting/tex/pgf/2.x.nix b/pkgs/tools/typesetting/tex/pgf/2.x.nix
index cb8d2dbdf484..56e50e444081 100644
--- a/pkgs/tools/typesetting/tex/pgf/2.x.nix
+++ b/pkgs/tools/typesetting/tex/pgf/2.x.nix
@@ -15,8 +15,9 @@ stdenv.mkDerivation {
     cp -prd * $out/share/texmf-nix
   ";
 
-  meta = {
+  meta = with stdenv.lib; {
     branch = "2";
-    platforms = stdenv.lib.platforms.unix;
+    platforms = platforms.unix;
+    license = licenses.gpl2;
   };
 }
diff --git a/pkgs/tools/typesetting/tex/pgf/3.x.nix b/pkgs/tools/typesetting/tex/pgf/3.x.nix
index 28225ebf28a6..0835c7c547df 100644
--- a/pkgs/tools/typesetting/tex/pgf/3.x.nix
+++ b/pkgs/tools/typesetting/tex/pgf/3.x.nix
@@ -24,8 +24,9 @@ stdenv.mkDerivation {
     cp -prd * $out/share/texmf-nix
   ";
 
-  meta = {
+  meta = with stdenv.lib; {
     branch = "3";
-    platforms = stdenv.lib.platforms.unix;
+    platforms = platforms.unix;
+    license = licenses.gpl2;
   };
 }