* More cleanup.

svn path=/nixpkgs/trunk/; revision=22795
This commit is contained in:
Eelco Dolstra
2010-07-28 15:35:01 +00:00
parent 27fe0c57f3
commit 749b8607ca
37 changed files with 329 additions and 329 deletions

View File

@@ -15,15 +15,16 @@
stdenv.mkDerivation {
name = "gnuplot-4.4.0";
src = fetchurl {
url = "mirror://sourceforge/gnuplot/gnuplot-4.4.0.tar.gz";
sha256 = "0akb2lzxa3b0j4nr6anr0mhsk10b1fcnixk8vk9aa82rl1a2rph0";
};
configureFlags = if (libX11 != null) then ["--with-x"] else ["--without-x"];
configureFlags = if libX11 != null then ["--with-x"] else ["--without-x"];
buildInputs = [
zlib gd texinfo readline emacs lua texLive libX11 libXt libXpm libXaw
wxGTK pango cairo pkgconfig
];
buildInputs =
[ zlib gd texinfo readline emacs lua texLive libX11 libXt libXpm libXaw
wxGTK pango cairo pkgconfig
];
}