2014-08-31 21:37:57 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat, libXaw
|
2015-09-15 10:26:18 +01:00
|
|
|
, yacc, libtool, fontconfig, pango, gd, xorg, gts, gettext, cairo
|
2017-01-09 22:24:17 +00:00
|
|
|
, ApplicationServices
|
2014-08-31 21:37:57 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "2.32.0";
|
|
|
|
name = "graphviz-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.graphviz.org/pub/graphviz/ARCHIVE/${name}.tar.gz";
|
|
|
|
sha256 = "0ym7lw3xnkcgbk32vfmm3329xymca60gzn90rq6dv8887qqv4lyq";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig libpng libjpeg expat libXaw yacc libtool fontconfig
|
|
|
|
pango gd gts
|
2015-09-15 10:26:18 +01:00
|
|
|
] ++ stdenv.lib.optionals (xorg != null) [ xorg.xlibsWrapper xorg.libXrender ]
|
2017-01-09 22:24:17 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices gettext ];
|
2014-08-31 21:37:57 +01:00
|
|
|
|
2015-10-06 19:31:39 +01:00
|
|
|
CPPFLAGS = stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") "-I${cairo.dev}/include/cairo";
|
2014-08-31 21:37:57 +01:00
|
|
|
|
|
|
|
configureFlags =
|
2016-04-16 18:37:32 +01:00
|
|
|
[ "--with-pngincludedir=${libpng.dev}/include"
|
2016-01-24 07:29:34 +00:00
|
|
|
"--with-pnglibdir=${libpng.out}/lib"
|
2016-04-16 18:36:59 +01:00
|
|
|
"--with-jpegincludedir=${libjpeg.dev}/include"
|
2016-01-24 07:29:29 +00:00
|
|
|
"--with-jpeglibdir=${libjpeg.out}/lib"
|
2016-04-16 17:49:30 +01:00
|
|
|
"--with-expatincludedir=${expat.dev}/include"
|
2016-01-24 07:29:09 +00:00
|
|
|
"--with-expatlibdir=${expat.out}/lib"
|
2016-11-24 07:28:56 +00:00
|
|
|
"--with-ltdl-include=${libtool}/include"
|
|
|
|
"--with-ltdl-lib=${libtool.lib}/lib"
|
2014-08-31 21:37:57 +01:00
|
|
|
"--with-cgraph=no"
|
|
|
|
"--with-sparse=no"
|
|
|
|
]
|
2015-09-15 10:26:18 +01:00
|
|
|
++ stdenv.lib.optional (xorg == null) "--without-x";
|
2014-08-31 21:37:57 +01:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "fortify" ];
|
2016-02-12 01:25:17 +00:00
|
|
|
|
2014-08-31 21:37:57 +01:00
|
|
|
preBuild = ''
|
|
|
|
sed -e 's@am__append_5 *=.*@am_append_5 =@' -i lib/gvc/Makefile
|
|
|
|
'';
|
|
|
|
|
|
|
|
# "command -v" is POSIX, "which" is not
|
|
|
|
postInstall = ''
|
|
|
|
sed -i 's|`which lefty`|"'$out'/bin/lefty"|' $out/bin/dotty
|
|
|
|
sed -i 's|which|command -v|' $out/bin/vimdot
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.graphviz.org/";
|
|
|
|
description = "Open source graph visualization software";
|
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2016-08-02 15:50:15 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2016-05-16 21:30:20 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ bjornfor raskin ];
|
2014-08-31 21:37:57 +01:00
|
|
|
inherit version;
|
2014-10-07 07:32:49 +01:00
|
|
|
branch = "2.32";
|
2014-08-31 21:37:57 +01:00
|
|
|
};
|
|
|
|
}
|