2007-09-21 21:43:43 +01:00
|
|
|
{ stdenv, fetchurl, zlib, gd, texinfo
|
2010-05-07 15:01:57 +01:00
|
|
|
, texLive ? null
|
|
|
|
, lua ? null
|
2009-09-09 10:36:03 +01:00
|
|
|
, emacs ? null
|
2007-09-21 21:43:43 +01:00
|
|
|
, libX11 ? null
|
|
|
|
, libXt ? null
|
|
|
|
, libXpm ? null
|
|
|
|
, libXaw ? null
|
2009-09-09 10:36:03 +01:00
|
|
|
, wxGTK ? null
|
|
|
|
, pango ? null
|
|
|
|
, cairo ? null
|
|
|
|
, pkgconfig ? null
|
2009-07-24 15:18:25 +01:00
|
|
|
, readline
|
2007-08-04 16:11:48 +01:00
|
|
|
}:
|
|
|
|
|
2010-09-27 19:15:49 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2011-12-21 22:48:33 +00:00
|
|
|
name = "gnuplot-4.4.4";
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2005-05-06 09:54:01 +01:00
|
|
|
src = fetchurl {
|
2010-09-27 19:15:49 +01:00
|
|
|
url = "mirror://sourceforge/gnuplot/${name}.tar.gz";
|
2011-12-21 22:48:33 +00:00
|
|
|
sha256 = "1zfv3npsxfn743wl65ibh11djxrc8fxzi2mgg75ppy6m12fmja6j";
|
2005-05-06 09:54:01 +01:00
|
|
|
};
|
|
|
|
|
2010-07-28 16:35:01 +01:00
|
|
|
configureFlags = if libX11 != null then ["--with-x"] else ["--without-x"];
|
2005-05-06 09:54:01 +01:00
|
|
|
|
2010-07-28 16:35:01 +01:00
|
|
|
buildInputs =
|
|
|
|
[ zlib gd texinfo readline emacs lua texLive libX11 libXt libXpm libXaw
|
|
|
|
wxGTK pango cairo pkgconfig
|
|
|
|
];
|
2010-09-27 19:15:49 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.gnuplot.info;
|
|
|
|
description = "A portable command-line driven graphing utility for many platforms";
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
2005-05-06 09:54:01 +01:00
|
|
|
}
|