summary refs log tree commit diff
path: root/pkgs/tools/graphics/ploticus/default.nix
blob: ff28959148fcec0a10f50594324a55645e469a79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{stdenv, fetchurl, zlib, libX11, libpng}:

stdenv.mkDerivation {
  name = "ploticus-2.42";

  builder = ./builder.sh;
  src = fetchurl {
    url = mirror://sourceforge/ploticus/ploticus/2.41/pl241src.tar.gz;
    sha256 = "1065r0nizjixi9sxxfxrnwg10r458i6fgsd23nrxa200rypvdk7c";
  };

  buildInputs = [ zlib libX11 libpng ];

  patches = [ ./ploticus-install.patch ];

  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 = licenses.gpl2Plus;
    maintainers = with maintainers; [ pSub ];
    homepage = http://ploticus.sourceforge.net/;
    platforms = with platforms; linux;
  };
}