perlPackages.GraphViz2: Init at 2.67

This commit is contained in:
Janne Heß 2023-10-20 12:06:44 +02:00
parent 77ddc91c73
commit 2f7a563295
No known key found for this signature in database

View File

@ -10732,7 +10732,29 @@ with self; {
meta = {
description = "Perl interface to the GraphViz graphing tool";
license = with lib.licenses; [artistic2 ];
license = with lib.licenses; [ artistic2 ];
};
};
GraphViz2 = buildPerlPackage {
pname = "GraphViz2";
version = "2.67";
src = fetchurl {
url = "mirror://cpan/authors/id/E/ET/ETJ/GraphViz2-2.67.tar.gz";
hash = "sha256-h8hcbt/86k+W5rSAD2+VEq6rGeuNOzSDAachMxvLhYA=";
};
# XXX: It'd be nicer if `GraphViz.pm' could record the path to graphviz.
buildInputs = [ pkgs.graphviz TestPod Moo IPCRun3 TypeTiny TestSnapshot Graph ];
propagatedBuildInputs = [ FileWhich IPCRun ParseRecDescent XMLTwig XMLXPath DataSectionSimple ];
# needed for fontconfig tests
HOME = "/build";
FONTCONFIG_PATH = "${lib.getOutput "out" pkgs.fontconfig}/etc/fonts";
meta = {
description = "Perl interface to the GraphViz graphing tool";
license = with lib.licenses; [ artistic2 ];
};
};