2007-09-21 22:43:43 +02:00
|
|
|
{ stdenv, fetchurl, zlib, gd, texinfo
|
|
|
|
, libX11 ? null
|
|
|
|
, libXt ? null
|
|
|
|
, libXpm ? null
|
|
|
|
, libXaw ? null
|
|
|
|
, x11Support ? false
|
2009-07-24 16:18:25 +02:00
|
|
|
, readline
|
2007-08-04 17:11:48 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert x11Support -> ((libX11 != null) &&
|
2007-09-21 22:43:43 +02:00
|
|
|
(libXt != null) && (libXpm != null) &&
|
|
|
|
(libXaw != null));
|
2005-05-06 10:54:01 +02:00
|
|
|
|
|
|
|
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.
|
2007-09-21 22:43:43 +02:00
|
|
|
name = "gnuplot-4.2.2-nix";
|
2005-05-06 10:54:01 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2007-09-21 22:43:43 +02:00
|
|
|
url = mirror://sourceforge/gnuplot/gnuplot-4.2.2.tar.gz;
|
|
|
|
sha256 = "14ca8wwdb4hdsgs51fqlrkcny3d4rm1vs54sfg5d0hr7iw2qlvvm";
|
2005-05-06 10:54:01 +02:00
|
|
|
};
|
|
|
|
|
2007-08-04 17:11:48 +02:00
|
|
|
configureFlags = if x11Support then ["--with-x"] else ["--without-x"];
|
2005-05-06 10:54:01 +02:00
|
|
|
|
2009-07-24 16:18:25 +02:00
|
|
|
buildInputs = [zlib gd texinfo readline] ++
|
2007-09-21 22:43:43 +02:00
|
|
|
(if x11Support then [libX11 libXt libXpm libXaw] else []);
|
2005-05-06 10:54:01 +02:00
|
|
|
}
|