2007-09-21 22:43:43 +02:00
|
|
|
{ stdenv, fetchurl, zlib, gd, texinfo
|
2009-09-09 11:36:03 +02:00
|
|
|
, emacs ? null
|
2007-09-21 22:43:43 +02:00
|
|
|
, libX11 ? null
|
|
|
|
, libXt ? null
|
|
|
|
, libXpm ? null
|
|
|
|
, libXaw ? null
|
2009-09-09 11:36:03 +02:00
|
|
|
, wxGTK ? null
|
|
|
|
, pango ? null
|
|
|
|
, cairo ? null
|
|
|
|
, pkgconfig ? null
|
2007-09-21 22:43:43 +02:00
|
|
|
, x11Support ? false
|
2009-07-24 16:18:25 +02:00
|
|
|
, readline
|
2007-08-04 17:11:48 +02:00
|
|
|
}:
|
|
|
|
|
2009-09-09 11:36:03 +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
|
|
|
|
2009-09-09 11:36:03 +02:00
|
|
|
assert (wxGTK != null) -> x11Support;
|
2005-05-06 10:54:01 +02:00
|
|
|
|
2009-09-09 11:36:03 +02:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "gnuplot-4.2.5";
|
2005-05-06 10:54:01 +02:00
|
|
|
src = fetchurl {
|
2009-09-09 11:36:03 +02:00
|
|
|
url = "mirror://sourceforge/gnuplot/gnuplot-4.2.5.tar.gz";
|
|
|
|
sha256 = "1y0imxy9bflzny98n1wvv19bqxfsvsxbl8z12k46qnna0vg7wiw9";
|
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-09-09 11:36:03 +02:00
|
|
|
buildInputs = [zlib gd texinfo readline emacs] ++
|
|
|
|
(if x11Support then [libX11 libXt libXpm libXaw] else []) ++
|
|
|
|
(if wxGTK != null then [wxGTK pango cairo pkgconfig] else []);
|
2005-05-06 10:54:01 +02:00
|
|
|
}
|