about summary refs log tree commit diff
path: root/pkgs/tools/graphics/gnuplot/default.nix
blob: ea97a1c8e54da51bb571b9a985d4bcfb7cb29648 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, zlib, libpng, texinfo}:

stdenv.mkDerivation {
  # Gnuplot (which isn't open source) has a license that requires that
  # we "add special version identification to distinguish your version
  # in addition to the base release version number".  Hence the "nix"
  # suffix.
  name = "gnuplot-4.0-nix";

#  builder = ./builder.sh;
  src = fetchurl {
    url = http://heanet.dl.sourceforge.net/sourceforge/gnuplot/gnuplot-4.0.0.tar.gz;
    md5 = "66258443d9f93cc4f46b147dac33e63a";
  };

  configureFlags = ["--without-x"];

  buildInputs = [zlib libpng texinfo];
}