* gnu/packages/xml.scm (perl-graph-readwrite): New variable. --- gnu/packages/xml.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+)
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index af597b8..0533cb9 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -8,6 +8,7 @@ ;;; Copyright © 2015, 2016 Efraim Flashner <efr...@flashner.co.il> ;;; Copyright © 2015 Raimon Grau <raimons...@gmail.com> ;;; Copyright © 2016 Leo Famulari <l...@famulari.name> +;;; Copyright © 2016 Ben Woodcroft <donttrust...@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -188,6 +189,38 @@ based on libxml for XML parsing, tree manipulation and XPath support.") (base32 "1klh81xbm9ppzgqk339097i39b7fnpmlj8lzn8bpczl3aww6x5xm"))))))) +(define-public perl-graph-readwrite + (package + (name "perl-graph-readwrite") + (version "2.08") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/N/NE/NEILB/Graph-ReadWrite-" + version + ".tar.gz")) + (sha256 + (base32 + "1wjni212nfz9irp19nx9if1lj3w9cybpdbzhii4g8macpryjj7ci")))) + (build-system perl-build-system) + (propagated-inputs + `(("perl-graph" ,perl-graph) + ("perl-parse-yapp" ,perl-parse-yapp) + ("perl-xml-parser" ,perl-xml-parser) + ("perl-xml-writer" ,perl-xml-writer))) + (home-page "http://search.cpan.org/dist/Graph-ReadWrite") + (synopsis "Modules for reading and writing directed graphs") + (description "This is a collection of perl classes for reading and writing +directed graphs in a variety of file formats. The graphs are represented in +Perl using Jarkko Hietaniemi's @code{Graph} classes. + +There are two base classes. @code{Graph::Reader} is the base class for classes +which read a graph file and create an instance of the Graph class. +@code{Graph::Writer} is the base class for classes which take an instance of +the @code{Graph} class and write it out in a specific file format.") + (license (package-license perl)))) + (define-public perl-xml-parser (package (name "perl-xml-parser") -- 2.9.1