summary refs log tree commit diff
path: root/pkgs/tools/graphics/ploticus/default.nix
blob: 9d284d29d8426412fd9f4ce41d6e7eda8ec4f1e4 (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 = http://nix.cs.uu.nl/dist/tarballs/pl233src.tar.gz;
    md5 = "1e242200e7e52f7a24041c95f58f2fc1";
  };

  buildInputs = [zlib libX11 libpng];

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