Author: simons
Date: Mon Apr 2 21:20:38 2012
New Revision: 33548
URL: https://nixos.org/websvn/nix/?rev=33548&sc=1
Log:
graphviz: enabled support for the gts library (used by sfdp renderer)
Modified:
nixpkgs/trunk/pkgs/tools/graphics/graphviz/default.nix
Modified: nixpkgs/trunk/pkgs/tools/graphics/graphviz/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/tools/graphics/graphviz/default.nix Mon Apr 2
20:18:52 2012 (r33547)
+++ nixpkgs/trunk/pkgs/tools/graphics/graphviz/default.nix Mon Apr 2
21:20:38 2012 (r33548)
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat, libXaw
-, yacc, libtool, fontconfig, pango, gd, xlibs
+, yacc, libtool, fontconfig, pango, gd, xlibs, gts
}:
stdenv.mkDerivation rec {
@@ -12,9 +12,9 @@
buildInputs =
[ pkgconfig libpng libjpeg expat libXaw yacc libtool fontconfig
- pango gd
+ pango gd gts
] ++ stdenv.lib.optionals (xlibs != null) [ xlibs.xlibs xlibs.libXrender ];
-
+
configureFlags =
[ "--with-pngincludedir=${libpng}/include"
"--with-pnglibdir=${libpng}/lib"
@@ -34,7 +34,19 @@
'';
meta = {
- description = "A program for visualising graphs";
- homepage = http://www.graphviz.org/;
+ 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;
+ maintainers = [ stdenv.lib.maintainers.simons ];
};
}
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits