2011-02-14 11:01:58 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat, libXaw
|
|
|
|
, yacc, libtool, fontconfig, pango, gd, xlibs
|
2008-07-03 16:27:19 +02:00
|
|
|
}:
|
2003-12-10 10:51:32 +01:00
|
|
|
|
2009-02-27 16:36:14 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2011-07-01 15:29:42 +02:00
|
|
|
name = "graphviz-2.28.0";
|
2003-12-10 10:51:32 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-02-27 16:36:14 +01:00
|
|
|
url = "http://www.graphviz.org/pub/graphviz/ARCHIVE/${name}.tar.gz";
|
2011-07-01 15:29:42 +02:00
|
|
|
sha256 = "0xpwg99cd8sp0c6r8klsmc66h1pday64kmnr4v6f9jkqqmrpkank";
|
2003-12-10 10:51:32 +01:00
|
|
|
};
|
|
|
|
|
2011-02-14 11:01:58 +01:00
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig libpng libjpeg expat libXaw yacc libtool fontconfig
|
2011-07-01 15:39:02 +02:00
|
|
|
pango gd
|
|
|
|
] ++ stdenv.lib.optionals (xlibs != null) [ xlibs.xlibs xlibs.libXrender ];
|
2008-07-03 16:27:19 +02:00
|
|
|
|
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"
|
|
|
|
]
|
2011-02-14 11:01:58 +01:00
|
|
|
++ stdenv.lib.optional (xlibs == null) "--without-x";
|
2007-12-31 18:53:33 +01:00
|
|
|
|
2011-07-01 15:29:42 +02:00
|
|
|
preBuild = ''
|
|
|
|
sed -e 's@am__append_5 *=.*@am_append_5 =@' -i lib/gvc/Makefile
|
|
|
|
'';
|
|
|
|
|
2012-03-21 00:27:12 +01:00
|
|
|
postInstall = ''
|
|
|
|
sed -i 's|`which lefty`|"'$out'/bin/lefty"|' $out/bin/dotty
|
|
|
|
'';
|
|
|
|
|
2007-12-31 18:53:33 +01:00
|
|
|
meta = {
|
|
|
|
description = "A program for visualising graphs";
|
|
|
|
homepage = http://www.graphviz.org/;
|
|
|
|
};
|
2003-12-10 10:51:32 +01:00
|
|
|
}
|