summary refs log tree commit diff
path: root/pkgs/tools/graphics/ploticus
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2015-05-19 22:06:12 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2015-05-19 22:06:32 +0200
commit65f1e8e048db75be3e97048fecb99ed39b0ce2e5 (patch)
tree4dde06e1e0298969c7d2bc5733eabcc6e50ec7b7 /pkgs/tools/graphics/ploticus
parent6e3f909c2d37bfe3b3801442a8a3ea64b0f0ee74 (diff)
downloadnixlib-65f1e8e048db75be3e97048fecb99ed39b0ce2e5.tar
nixlib-65f1e8e048db75be3e97048fecb99ed39b0ce2e5.tar.gz
nixlib-65f1e8e048db75be3e97048fecb99ed39b0ce2e5.tar.bz2
nixlib-65f1e8e048db75be3e97048fecb99ed39b0ce2e5.tar.lz
nixlib-65f1e8e048db75be3e97048fecb99ed39b0ce2e5.tar.xz
nixlib-65f1e8e048db75be3e97048fecb99ed39b0ce2e5.tar.zst
nixlib-65f1e8e048db75be3e97048fecb99ed39b0ce2e5.zip
ploticus: update from 2.41 to 2.42
Diffstat (limited to 'pkgs/tools/graphics/ploticus')
-rw-r--r--pkgs/tools/graphics/ploticus/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/tools/graphics/ploticus/default.nix b/pkgs/tools/graphics/ploticus/default.nix
index 92dce64dcfd4..2619387df8b8 100644
--- a/pkgs/tools/graphics/ploticus/default.nix
+++ b/pkgs/tools/graphics/ploticus/default.nix
@@ -1,29 +1,28 @@
 {stdenv, fetchurl, zlib, libX11, libpng}:
 
 stdenv.mkDerivation {
-  name = "ploticus-2.41";
+  name = "ploticus-2.42";
 
   builder = ./builder.sh;
   src = fetchurl {
     url = mirror://sourceforge/ploticus/ploticus/2.41/pl241src.tar.gz;
-    sha256 = "ecccb6afcf0008d5b31da2e9e74c448564101eb7b9bbde758a3dca1f2dc8c580";
+    sha256 = "1065r0nizjixi9sxxfxrnwg10r458i6fgsd23nrxa200rypvdk7c";
   };
 
-  buildInputs = [zlib libX11 libpng];
+  buildInputs = [ zlib libX11 libpng ];
 
-  patches = [./ploticus-install.patch];
+  patches = [ ./ploticus-install.patch ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "A non-interactive software package for producing plots and charts";
-
     longDescription = ''Ploticus is a free, GPL'd, non-interactive
       software package for producing plots, charts, and graphics from
       data.  Ploticus is good for automated or just-in-time graph
       generation, handles date and time data nicely, and has basic
       statistical capabilities.  It allows significant user control
       over colors, styles, options and details.'';
-
-    license = stdenv.lib.licenses.gpl2Plus;
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ pSub ];
     homepage = http://ploticus.sourceforge.net/;
   };
 }