summary refs log tree commit diff
path: root/pkgs/tools/graphics/ploticus/default.nix
blob: 650d2ba9d3a46b9cc7f624305a3febc27f466967 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl, zlib, libX11, libpng}:

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

  builder = ./builder.sh;
  src = fetchurl {
    url = mirror://sourceforge/ploticus/pl233src.tar.gz;
    md5 = "1e242200e7e52f7a24041c95f58f2fc1";
  };

  buildInputs = [zlib libX11 libpng];

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