2011-02-14 10:01:58 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat, libXaw
|
2013-01-11 17:20:44 +00:00
|
|
|
, yacc, libtool, fontconfig, pango, gd, xlibs, gts, gettext
|
2008-07-03 15:27:19 +01:00
|
|
|
}:
|
2003-12-10 09:51:32 +00:00
|
|
|
|
2009-02-27 15:36:14 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2011-07-01 14:29:42 +01:00
|
|
|
name = "graphviz-2.28.0";
|
2003-12-10 09:51:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-02-27 15:36:14 +00:00
|
|
|
url = "http://www.graphviz.org/pub/graphviz/ARCHIVE/${name}.tar.gz";
|
2011-07-01 14:29:42 +01:00
|
|
|
sha256 = "0xpwg99cd8sp0c6r8klsmc66h1pday64kmnr4v6f9jkqqmrpkank";
|
2003-12-10 09:51:32 +00:00
|
|
|
};
|
|
|
|
|
2011-02-14 10:01:58 +00:00
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig libpng libjpeg expat libXaw yacc libtool fontconfig
|
2012-04-02 22:20:38 +01:00
|
|
|
pango gd gts
|
2013-01-11 17:20:44 +00:00
|
|
|
] ++ stdenv.lib.optionals (xlibs != null) [ xlibs.xlibs xlibs.libXrender ]
|
|
|
|
++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") gettext;
|
2012-04-02 22:20:38 +01:00
|
|
|
|
2012-11-11 19:16:21 +00:00
|
|
|
patches = [ ./fix-broken-memcp-signature.patch ];
|
|
|
|
|
2006-05-01 16:25:17 +01: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 10:01:58 +00:00
|
|
|
++ stdenv.lib.optional (xlibs == null) "--without-x";
|
2007-12-31 17:53:33 +00:00
|
|
|
|
2011-07-01 14:29:42 +01:00
|
|
|
preBuild = ''
|
|
|
|
sed -e 's@am__append_5 *=.*@am_append_5 =@' -i lib/gvc/Makefile
|
|
|
|
'';
|
|
|
|
|
2013-03-09 20:38:49 +00:00
|
|
|
# "command -v" is POSIX, "which" is not
|
2012-03-20 23:27:12 +00:00
|
|
|
postInstall = ''
|
|
|
|
sed -i 's|`which lefty`|"'$out'/bin/lefty"|' $out/bin/dotty
|
2013-03-09 20:38:49 +00:00
|
|
|
sed -i 's|which|command -v|' $out/bin/vimdot
|
2012-03-20 23:27:12 +00:00
|
|
|
'';
|
|
|
|
|
2007-12-31 17:53:33 +00:00
|
|
|
meta = {
|
2012-04-02 22:20:38 +01:00
|
|
|
homepage = "http://www.graphviz.org/";
|
2012-04-02 22:54:14 +01:00
|
|
|
description = "Open source graph visualization software";
|
2012-04-02 22:20:38 +01: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;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2007-12-31 17:53:33 +00:00
|
|
|
};
|
2003-12-10 09:51:32 +00:00
|
|
|
}
|