mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add perl-graphviz.
* gnu/packages/perl.scm (perl-graphviz): New variable. Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
This commit is contained in:
parent
7bc9a96c38
commit
84c765e0f3
1 changed files with 30 additions and 0 deletions
|
@ -78,6 +78,7 @@
|
||||||
#:use-module (gnu packages gcc)
|
#:use-module (gnu packages gcc)
|
||||||
#:use-module (gnu packages gd)
|
#:use-module (gnu packages gd)
|
||||||
#:use-module (gnu packages gl)
|
#:use-module (gnu packages gl)
|
||||||
|
#:use-module (gnu packages graphviz)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
#:use-module (gnu packages language)
|
#:use-module (gnu packages language)
|
||||||
|
@ -5808,6 +5809,35 @@ internationalization functions provided by the C library.")
|
||||||
the abstract data structures.")
|
the abstract data structures.")
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
|
(define-public perl-graphviz
|
||||||
|
(package
|
||||||
|
(name "perl-graphviz")
|
||||||
|
(version "2.26")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/E/ET/ETJ/GraphViz-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0a3kv92z9gykwgh8py5y67wygy25lijdfb97fl2g6ar6nch2apcs"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(inputs (list graphviz))
|
||||||
|
(propagated-inputs (list perl-file-which
|
||||||
|
perl-ipc-run
|
||||||
|
perl-libwww
|
||||||
|
perl-parse-recdescent
|
||||||
|
perl-xml-twig
|
||||||
|
perl-xml-xpath))
|
||||||
|
(home-page "https://metacpan.org/release/GraphViz")
|
||||||
|
(synopsis "Perl interface to Graphviz")
|
||||||
|
(description
|
||||||
|
"This module provides an interface to layout and image generation of
|
||||||
|
directed and undirected graphs in a variety of formats (PostScript, PNG, etc.)
|
||||||
|
using the @code{dot}, @code{neato}, @code{twopi}, @code{circo}, and @code{fdp}
|
||||||
|
programs from the Graphviz project. This package is deprecated in favour of
|
||||||
|
GraphViz2.")
|
||||||
|
(license license:perl-license)))
|
||||||
|
|
||||||
(define-public perl-guard
|
(define-public perl-guard
|
||||||
(package
|
(package
|
||||||
(name "perl-guard")
|
(name "perl-guard")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue