summary refs log tree commit diff
path: root/pkgs/tools/typesetting/tex/pgfplots
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-11-14 23:40:09 +0100
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-11-15 09:04:56 +0100
commitd458a1869f0f13ea978fbe1534dbc6416f043949 (patch)
tree8b345176ed63f57d9f3f4597ccd8734135dd2c85 /pkgs/tools/typesetting/tex/pgfplots
parentd190d8af0c9c06508e3a9085dbc048a5c61555ac (diff)
downloadnixpkgs-d458a1869f0f13ea978fbe1534dbc6416f043949.tar
nixpkgs-d458a1869f0f13ea978fbe1534dbc6416f043949.tar.gz
nixpkgs-d458a1869f0f13ea978fbe1534dbc6416f043949.tar.bz2
nixpkgs-d458a1869f0f13ea978fbe1534dbc6416f043949.tar.lz
nixpkgs-d458a1869f0f13ea978fbe1534dbc6416f043949.tar.xz
nixpkgs-d458a1869f0f13ea978fbe1534dbc6416f043949.tar.zst
nixpkgs-d458a1869f0f13ea978fbe1534dbc6416f043949.zip
pgfplots: add meta data
Diffstat (limited to 'pkgs/tools/typesetting/tex/pgfplots')
-rw-r--r--pkgs/tools/typesetting/tex/pgfplots/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/tools/typesetting/tex/pgfplots/default.nix b/pkgs/tools/typesetting/tex/pgfplots/default.nix
index 2fe3daee699..fcdebedb7d8 100644
--- a/pkgs/tools/typesetting/tex/pgfplots/default.nix
+++ b/pkgs/tools/typesetting/tex/pgfplots/default.nix
@@ -19,7 +19,10 @@ stdenv.mkDerivation {
     cp -prd * $out/share/texmf-nix
   ";
 
-  meta = {
-    platforms = stdenv.lib.platforms.unix;
+  meta = with stdenv.lib; {
+    description = "TeX package to draw plots directly in TeX in two and three dimensions";
+    homepage = http://pgfplots.sourceforge.net;
+    platforms = platforms.unix;
+    license = licenses.gpl3Plus;
   };
 }