3
0
Fork 0
forked from mirrors/nixpkgs

* Graphviz 2.4.

svn path=/nixpkgs/trunk/; revision=3530
This commit is contained in:
Eelco Dolstra 2005-08-05 11:52:44 +00:00
parent b98f9b82f5
commit 0bf13e6f16
2 changed files with 6 additions and 6 deletions

View file

@ -157,7 +157,7 @@ rec {
}; };
graphviz = (import ../tools/graphics/graphviz) { graphviz = (import ../tools/graphics/graphviz) {
inherit fetchurl stdenv libpng libjpeg expat x11 yacc; inherit fetchurl stdenv libpng libjpeg expat x11 yacc libtool;
inherit (xlibs) libXaw; inherit (xlibs) libXaw;
}; };

View file

@ -1,17 +1,17 @@
{stdenv, fetchurl, x11, libpng, libjpeg, expat, libXaw, yacc}: {stdenv, fetchurl, x11, libpng, libjpeg, expat, libXaw, yacc, libtool}:
assert libpng != null && libjpeg != null && expat != null; assert libpng != null && libjpeg != null && expat != null;
stdenv.mkDerivation { stdenv.mkDerivation {
name = "graphviz-2.2"; name = "graphviz-2.4";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/graphviz-2.2.tar.gz; url = http://www.graphviz.org/pub/graphviz/ARCHIVE/graphviz-2.4.tar.gz;
md5 = "9275d30695a5c22f360acbef7b85acd3"; md5 = "f1074d38a7eeb5e5b2ebfdb643aebf8a";
}; };
buildInputs = [x11 libpng libjpeg expat libXaw yacc]; buildInputs = [x11 libpng libjpeg expat libXaw yacc libtool];
configureFlags = [ configureFlags = [
(if x11 == null then "--without-x" else "") (if x11 == null then "--without-x" else "")
]; ];