2005-08-05 13:52:44 +02:00
|
|
|
{stdenv, fetchurl, x11, libpng, libjpeg, expat, libXaw, yacc, libtool}:
|
2003-12-10 10:51:32 +01:00
|
|
|
|
2004-04-01 15:36:31 +02:00
|
|
|
assert libpng != null && libjpeg != null && expat != null;
|
2003-12-10 10:51:32 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2007-12-31 18:53:33 +01:00
|
|
|
name = "graphviz-2.16.1";
|
2003-12-10 10:51:32 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2007-12-31 18:53:33 +01:00
|
|
|
url = http://www.graphviz.org/pub/graphviz/ARCHIVE/graphviz-2.16.1.tar.gz;
|
|
|
|
sha256 = "1lan1hyar0xbqvnkcmlcvv02g8zfpk94gk04y4sik5irpa2s3h9j";
|
2003-12-10 10:51:32 +01:00
|
|
|
};
|
|
|
|
|
2005-08-05 13:52:44 +02:00
|
|
|
buildInputs = [x11 libpng libjpeg expat libXaw yacc libtool];
|
2006-05-01 17:25:17 +02:00
|
|
|
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"
|
|
|
|
]
|
2007-12-31 18:53:33 +01:00
|
|
|
++ stdenv.lib.optional (x11 == null) "--without-x";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A program for visualising graphs";
|
|
|
|
homepage = http://www.graphviz.org/;
|
|
|
|
};
|
2003-12-10 10:51:32 +01:00
|
|
|
}
|