d051b20a39
support. * New function makeFontsConf to generate a fontconfig configuration file. Moved from NixOS. * dot2pdf: use makeFontsConf to generate a fonts.conf containing just the Ghostscript fonts (see NIXPKGS-29). * dot2pdf: generate PDF directly, don't go through PS. Note that this and using fontconfig changes the interpretation of "fontname" attributes in dot graphs. svn path=/nixpkgs/trunk/; revision=12251
32 lines
950 B
Nix
32 lines
950 B
Nix
{ stdenv, fetchurl, pkgconfig, x11, libpng, libjpeg, expat, libXaw
|
|
, yacc, libtool, fontconfig, pango, gd
|
|
}:
|
|
|
|
assert libpng != null && libjpeg != null && expat != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "graphviz-2.20.2";
|
|
|
|
src = fetchurl {
|
|
url = http://www.graphviz.org/pub/graphviz/ARCHIVE/graphviz-2.20.2.tar.gz;
|
|
sha256 = "13mw0mhr4n14c5q7a6c44cvggl5hiqbx53ynr53s67rldvzcilgm";
|
|
};
|
|
|
|
buildInputs = [pkgconfig x11 libpng libjpeg expat libXaw yacc libtool fontconfig pango gd];
|
|
|
|
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"
|
|
]
|
|
++ stdenv.lib.optional (x11 == null) "--without-x";
|
|
|
|
meta = {
|
|
description = "A program for visualising graphs";
|
|
homepage = http://www.graphviz.org/;
|
|
};
|
|
}
|