42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, xlibsWrapper, libpng, libjpeg, expat, libXaw
|
|
, yacc, libtool, fontconfig, pango, gd, libwebp
|
|
}:
|
|
|
|
assert libpng != null && libjpeg != null && expat != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "graphviz-2.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.graphviz.org/pub/graphviz/ARCHIVE/${name}.tar.gz";
|
|
sha256 = "39b8e1f2ba4cc1f5bdc8e39c7be35e5f831253008e4ee2c176984f080416676c";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
xlibsWrapper libpng libjpeg expat libXaw yacc
|
|
libtool fontconfig pango gd libwebp
|
|
];
|
|
|
|
hardeningDisable = [ "format" "fortify" ];
|
|
|
|
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"
|
|
]
|
|
++ stdenv.lib.optional (xlibsWrapper == null) "--without-x";
|
|
|
|
meta = {
|
|
description = "A program for visualising graphs";
|
|
homepage = http://www.graphviz.org/;
|
|
branch = "2.0";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|