2006-08-23 18:09:03 +02:00
|
|
|
{stdenv, fetchurl, zlib, libX11, libpng}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-05-19 22:06:12 +02:00
|
|
|
name = "ploticus-2.42";
|
2006-08-23 18:09:03 +02:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2020-04-01 03:11:51 +02:00
|
|
|
url = "mirror://sourceforge/ploticus/ploticus/2.41/pl241src.tar.gz";
|
2015-05-19 22:06:12 +02:00
|
|
|
sha256 = "1065r0nizjixi9sxxfxrnwg10r458i6fgsd23nrxa200rypvdk7c";
|
2006-08-23 18:09:03 +02:00
|
|
|
};
|
|
|
|
|
2015-05-19 22:06:12 +02:00
|
|
|
buildInputs = [ zlib libX11 libpng ];
|
2006-08-23 18:09:03 +02:00
|
|
|
|
2016-08-04 11:09:43 +02:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2015-05-19 22:06:12 +02:00
|
|
|
patches = [ ./ploticus-install.patch ];
|
2008-03-26 23:54:16 +01:00
|
|
|
|
2017-03-01 08:41:44 +01:00
|
|
|
# Make the symlink relative instead of absolute.
|
|
|
|
# Otherwise it breaks when auto-moved to $out/share.
|
|
|
|
preFixup = ''
|
|
|
|
ln -sf pl.1 "$out"/man/man1/ploticus.1
|
|
|
|
'';
|
|
|
|
|
2015-05-19 22:06:12 +02:00
|
|
|
meta = with stdenv.lib; {
|
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.'';
|
2015-05-19 22:06:12 +02:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://ploticus.sourceforge.net/";
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with platforms; linux;
|
2008-03-26 23:54:16 +01:00
|
|
|
};
|
2006-08-23 18:09:03 +02:00
|
|
|
}
|