2007-09-21 22:43:43 +02:00
|
|
|
{ stdenv, fetchurl, zlib, gd, texinfo
|
2010-05-07 16:01:57 +02:00
|
|
|
, texLive ? null
|
|
|
|
, lua ? null
|
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
|
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
|
|
|
stdenv.mkDerivation {
|
2010-05-07 16:01:57 +02:00
|
|
|
name = "gnuplot-4.4.0";
|
2010-07-28 17:35:01 +02:00
|
|
|
|
2005-05-06 10:54:01 +02:00
|
|
|
src = fetchurl {
|
2010-05-07 16:01:57 +02:00
|
|
|
url = "mirror://sourceforge/gnuplot/gnuplot-4.4.0.tar.gz";
|
|
|
|
sha256 = "0akb2lzxa3b0j4nr6anr0mhsk10b1fcnixk8vk9aa82rl1a2rph0";
|
2005-05-06 10:54:01 +02:00
|
|
|
};
|
|
|
|
|
2010-07-28 17:35:01 +02:00
|
|
|
configureFlags = if libX11 != null then ["--with-x"] else ["--without-x"];
|
2005-05-06 10:54:01 +02:00
|
|
|
|
2010-07-28 17:35:01 +02:00
|
|
|
buildInputs =
|
|
|
|
[ zlib gd texinfo readline emacs lua texLive libX11 libXt libXpm libXaw
|
|
|
|
wxGTK pango cairo pkgconfig
|
|
|
|
];
|
2005-05-06 10:54:01 +02:00
|
|
|
}
|