2006-08-23 16:09:03 +00:00
|
|
|
{stdenv, fetchurl, zlib, libX11, libpng}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-05-19 20:06:12 +00:00
|
|
|
name = "ploticus-2.42";
|
2006-08-23 16:09:03 +00:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2012-05-22 21:18:25 +00:00
|
|
|
url = mirror://sourceforge/ploticus/ploticus/2.41/pl241src.tar.gz;
|
2015-05-19 20:06:12 +00:00
|
|
|
sha256 = "1065r0nizjixi9sxxfxrnwg10r458i6fgsd23nrxa200rypvdk7c";
|
2006-08-23 16:09:03 +00:00
|
|
|
};
|
|
|
|
|
2015-05-19 20:06:12 +00:00
|
|
|
buildInputs = [ zlib libX11 libpng ];
|
2006-08-23 16:09:03 +00:00
|
|
|
|
2015-05-19 20:06:12 +00:00
|
|
|
patches = [ ./ploticus-install.patch ];
|
2008-03-26 22:54:16 +00:00
|
|
|
|
2015-05-19 20:06:12 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-03 13:27:40 +00:00
|
|
|
description = "A non-interactive software package for producing plots and charts";
|
2008-03-26 22:54:16 +00:00
|
|
|
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.'';
|
2015-05-19 20:06:12 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2008-03-26 22:54:16 +00:00
|
|
|
homepage = http://ploticus.sourceforge.net/;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; linux;
|
2008-03-26 22:54:16 +00:00
|
|
|
};
|
2006-08-23 16:09:03 +00:00
|
|
|
}
|