From c2e983767427b7c1e489e060ff3aeaf76d1874cc Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 22 Dec 2015 16:14:07 +0100 Subject: [PATCH 11/13] gnu: Add XML::Compile::Cache. * gnu/packages/xml.scm (perl-xml-compile-cache): New variable. --- gnu/packages/xml.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index c46f4d4..7eada2b 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -444,6 +444,29 @@ XML or XML into a Perl data-structure, both directions under rigid control by a schema.") (license (package-license perl)))) +(define-public perl-xml-compile-cache + (package + (name "perl-xml-compile-cache") + (version "1.04") + (source (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/" + "XML-Compile-Cache-" version ".tar.gz")) + (sha256 + (base32 + "1689dm54n7wb0n0cl9n77vk0kvg0mcckn2hz9ahigjhvazah8740")))) + (build-system perl-build-system) + (propagated-inputs + `(("perl-log-report" ,perl-log-report) + ("perl-xml-compile" ,perl-xml-compile) + ("perl-xml-compile-tester" ,perl-xml-compile-tester) + ("perl-xml-libxml-simple" ,perl-xml-libxml-simple))) + (home-page "http://search.cpan.org/dist/XML-Compile-Cache") + (synopsis "Cache compiled XML translators") + (description + "This package provides methods to cache compiled XML translators.") + (license (package-license perl)))) + (define-public pugixml (package (name "pugixml") -- 2.5.0