nixpkgs/pkgs/tools/graphics/graphviz/2.32.nix

68 lines
2.3 KiB
Nix
Raw Normal View History

2014-08-31 20:37:57 +00:00
{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat, libXaw
, yacc, libtool, fontconfig, pango, gd, xorg, gts, gettext, cairo
2017-01-09 22:24:17 +00:00
, ApplicationServices
2014-08-31 20:37:57 +00: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
] ++ 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 20:37:57 +00:00
CPPFLAGS = stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") "-I${cairo.dev}/include/cairo";
2014-08-31 20:37:57 +00:00
configureFlags =
[ "--with-pngincludedir=${libpng.dev}/include"
"--with-pnglibdir=${libpng.out}/lib"
"--with-jpegincludedir=${libjpeg.dev}/include"
"--with-jpeglibdir=${libjpeg.out}/lib"
"--with-expatincludedir=${expat.dev}/include"
"--with-expatlibdir=${expat.out}/lib"
"--with-ltdl-include=${libtool}/include"
"--with-ltdl-lib=${libtool.lib}/lib"
2014-08-31 20:37:57 +00:00
"--with-cgraph=no"
"--with-sparse=no"
]
++ stdenv.lib.optional (xorg == null) "--without-x";
2014-08-31 20:37:57 +00:00
hardeningDisable = [ "fortify" ];
2016-02-12 01:25:17 +00:00
2014-08-31 20:37:57 +00: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.
'';
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
maintainers = with stdenv.lib.maintainers; [ bjornfor raskin ];
2014-08-31 20:37:57 +00:00
inherit version;
2014-10-07 06:32:49 +00:00
branch = "2.32";
2014-08-31 20:37:57 +00:00
};
}