2011-02-14 02:01:58 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat, libXaw
|
2013-01-11 09:20:44 -08:00
|
|
|
, yacc, libtool, fontconfig, pango, gd, xlibs, gts, gettext
|
2008-07-03 07:27:19 -07:00
|
|
|
}:
|
2003-12-10 01:51:32 -08:00
|
|
|
|
2009-02-27 07:36:14 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2011-07-01 06:29:42 -07:00
|
|
|
name = "graphviz-2.28.0";
|
2003-12-10 01:51:32 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-02-27 07:36:14 -08:00
|
|
|
url = "http://www.graphviz.org/pub/graphviz/ARCHIVE/${name}.tar.gz";
|
2011-07-01 06:29:42 -07:00
|
|
|
sha256 = "0xpwg99cd8sp0c6r8klsmc66h1pday64kmnr4v6f9jkqqmrpkank";
|
2003-12-10 01:51:32 -08:00
|
|
|
};
|
|
|
|
|
2011-02-14 02:01:58 -08:00
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig libpng libjpeg expat libXaw yacc libtool fontconfig
|
2012-04-02 14:20:38 -07:00
|
|
|
pango gd gts
|
2013-01-11 09:20:44 -08:00
|
|
|
] ++ stdenv.lib.optionals (xlibs != null) [ xlibs.xlibs xlibs.libXrender ]
|
|
|
|
++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") gettext;
|
2012-04-02 14:20:38 -07:00
|
|
|
|
2012-11-11 11:16:21 -08:00
|
|
|
patches = [ ./fix-broken-memcp-signature.patch ];
|
|
|
|
|
2006-05-01 08:25:17 -07: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 02:01:58 -08:00
|
|
|
++ stdenv.lib.optional (xlibs == null) "--without-x";
|
2007-12-31 09:53:33 -08:00
|
|
|
|
2011-07-01 06:29:42 -07:00
|
|
|
preBuild = ''
|
|
|
|
sed -e 's@am__append_5 *=.*@am_append_5 =@' -i lib/gvc/Makefile
|
|
|
|
'';
|
|
|
|
|
2013-03-09 12:38:49 -08:00
|
|
|
# "command -v" is POSIX, "which" is not
|
2012-03-20 16:27:12 -07:00
|
|
|
postInstall = ''
|
|
|
|
sed -i 's|`which lefty`|"'$out'/bin/lefty"|' $out/bin/dotty
|
2013-03-09 12:38:49 -08:00
|
|
|
sed -i 's|which|command -v|' $out/bin/vimdot
|
2012-03-20 16:27:12 -07:00
|
|
|
'';
|
|
|
|
|
2007-12-31 09:53:33 -08:00
|
|
|
meta = {
|
2012-04-02 14:20:38 -07:00
|
|
|
homepage = "http://www.graphviz.org/";
|
2012-04-02 14:54:14 -07:00
|
|
|
description = "Open source graph visualization software";
|
2012-04-02 14:20:38 -07:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Graphviz is open source graph visualization software. Graph
|
|
|
|
visualization is a way of representing structural information as
|
|
|
|
diagrams of abstract graphs and networks. It has important
|
|
|
|
applications in networking, bioinformatics, software engineering,
|
|
|
|
database and web design, machine learning, and in visual
|
|
|
|
interfaces for other technical domains.
|
|
|
|
'';
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2013-05-20 10:33:18 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ simons bjornfor ];
|
2007-12-31 09:53:33 -08:00
|
|
|
};
|
2003-12-10 01:51:32 -08:00
|
|
|
}
|