2005-05-06 10:54:01 +02:00
|
|
|
{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 {
|
2006-01-30 17:04:03 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/gnuplot-4.0.0.tar.gz;
|
2005-05-06 10:54:01 +02:00
|
|
|
md5 = "66258443d9f93cc4f46b147dac33e63a";
|
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = ["--without-x"];
|
|
|
|
|
|
|
|
buildInputs = [zlib libpng texinfo];
|
|
|
|
}
|