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

30 lines
844 B
Nix
Raw Normal View History

2007-09-21 20:43:43 +00:00
{ stdenv, fetchurl, zlib, gd, texinfo
, libX11 ? null
, libXt ? null
, libXpm ? null
, libXaw ? null
, x11Support ? false
2007-08-04 15:11:48 +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
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 20:43:43 +00:00
name = "gnuplot-4.2.2-nix";
2005-05-06 08:54:01 +00:00
src = fetchurl {
2007-09-21 20:43:43 +00:00
url = mirror://sourceforge/gnuplot/gnuplot-4.2.2.tar.gz;
sha256 = "14ca8wwdb4hdsgs51fqlrkcny3d4rm1vs54sfg5d0hr7iw2qlvvm";
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
2007-09-21 20:43:43 +00:00
buildInputs = [zlib gd texinfo] ++
(if x11Support then [libX11 libXt libXpm libXaw] else []);
2005-05-06 08:54:01 +00:00
}