Files
nixpkgs/pkgs/tools/graphics/gnuplot/default.nix
T

34 lines
829 B
Nix
Raw Normal View History

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