* More examples of interpolation.

svn path=/nixpkgs/trunk/; revision=5244
This commit is contained in:
Eelco Dolstra
2006-05-01 15:25:17 +00:00
parent d56e3d6f5a
commit 4acfb1a684
7 changed files with 24 additions and 40 deletions
+9 -6
View File
@@ -5,16 +5,19 @@ assert libpng != null && libjpeg != null && expat != null;
stdenv.mkDerivation {
name = "graphviz-2.4";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/graphviz-2.4.tar.gz;
md5 = "f1074d38a7eeb5e5b2ebfdb643aebf8a";
};
buildInputs = [x11 libpng libjpeg expat libXaw yacc libtool];
configureFlags = [
(if x11 == null then "--without-x" else "")
];
inherit libpng libjpeg expat;
configureFlags =
[ "--with-pngincludedir=${libpng}/include"
"--with-pnglibdir=${libpng}/lib"
"--with-jpegincludedir=${libjpeg}/include"
"--with-jpeglibdir=${libjpeg}/lib"
"--with-expatincludedir=${expat}/include"
"--with-expatlibdir=${expat}/lib"
]
++ (if x11 == null then ["--without-x"] else []);
}