2011-02-14 11:01:58 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat, libXaw
|
2013-06-18 12:24:40 +02:00
|
|
|
, yacc, libtool, fontconfig, pango, gd, xlibs, gts, gettext, cairo
|
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
|
2012-04-02 23:20:38 +02:00
|
|
|
pango gd gts
|
2013-01-11 18:20:44 +01:00
|
|
|
] ++ stdenv.lib.optionals (xlibs != null) [ xlibs.xlibs xlibs.libXrender ]
|
|
|
|
++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") gettext;
|
2012-04-02 23:20:38 +02:00
|
|
|
|
2012-11-11 20:16:21 +01:00
|
|
|
patches = [ ./fix-broken-memcp-signature.patch ];
|
|
|
|
|
2013-06-18 12:24:40 +02:00
|
|
|
CPPFLAGS = stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") "-I${cairo}/include/cairo";
|
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2013-03-09 21:38:49 +01:00
|
|
|
# "command -v" is POSIX, "which" is not
|
2012-03-21 00:27:12 +01:00
|
|
|
postInstall = ''
|
|
|
|
sed -i 's|`which lefty`|"'$out'/bin/lefty"|' $out/bin/dotty
|
2013-03-09 21:38:49 +01:00
|
|
|
sed -i 's|which|command -v|' $out/bin/vimdot
|
2012-03-21 00:27:12 +01:00
|
|
|
'';
|
|
|
|
|
2007-12-31 18:53:33 +01:00
|
|
|
meta = {
|
2012-04-02 23:20:38 +02:00
|
|
|
homepage = "http://www.graphviz.org/";
|
2012-04-02 23:54:14 +02:00
|
|
|
description = "Open source graph visualization software";
|
2012-04-02 23:20:38 +02: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 19:33:18 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ simons bjornfor ];
|
2007-12-31 18:53:33 +01:00
|
|
|
};
|
2003-12-10 10:51:32 +01:00
|
|
|
}
|