3
0
Fork 0
forked from mirrors/nixpkgs

ploticus: update from 2.41 to 2.42

This commit is contained in:
Pascal Wittmann 2015-05-19 22:06:12 +02:00
parent 6e3f909c2d
commit 65f1e8e048

View file

@ -1,29 +1,28 @@
{stdenv, fetchurl, zlib, libX11, libpng}: {stdenv, fetchurl, zlib, libX11, libpng}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "ploticus-2.41"; name = "ploticus-2.42";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = mirror://sourceforge/ploticus/ploticus/2.41/pl241src.tar.gz; 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"; description = "A non-interactive software package for producing plots and charts";
longDescription = ''Ploticus is a free, GPL'd, non-interactive longDescription = ''Ploticus is a free, GPL'd, non-interactive
software package for producing plots, charts, and graphics from software package for producing plots, charts, and graphics from
data. Ploticus is good for automated or just-in-time graph data. Ploticus is good for automated or just-in-time graph
generation, handles date and time data nicely, and has basic generation, handles date and time data nicely, and has basic
statistical capabilities. It allows significant user control statistical capabilities. It allows significant user control
over colors, styles, options and details.''; over colors, styles, options and details.'';
license = licenses.gpl2Plus;
license = stdenv.lib.licenses.gpl2Plus; maintainers = with maintainers; [ pSub ];
homepage = http://ploticus.sourceforge.net/; homepage = http://ploticus.sourceforge.net/;
}; };
} }