2006-08-23 18:09:03 +02:00
|
|
|
{stdenv, fetchurl, zlib, libX11, libpng}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-03-26 23:54:16 +01:00
|
|
|
name = "ploticus-2.40";
|
2006-08-23 18:09:03 +02:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2008-03-26 23:54:16 +01:00
|
|
|
url = mirror://sourceforge/ploticus/pl240src.tar.gz;
|
|
|
|
sha256 = "1gwppsmfxajrpidjrplkhvq2yy35r9hmigpwjmjqv4r7dj7cnrw8";
|
2006-08-23 18:09:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [zlib libX11 libpng];
|
|
|
|
|
|
|
|
patches = [./ploticus-install.patch];
|
2008-03-26 23:54:16 +01:00
|
|
|
|
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "A non-interactive software package for producing plots and charts";
|
2008-03-26 23:54:16 +01: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.'';
|
|
|
|
|
2008-03-27 00:42:29 +01:00
|
|
|
license = "GPLv2+";
|
2008-03-26 23:54:16 +01:00
|
|
|
homepage = http://ploticus.sourceforge.net/;
|
|
|
|
};
|
2006-08-23 18:09:03 +02:00
|
|
|
}
|