guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/08: gnu: Add perl-xml-sax-writer.


From: Ricardo Wurmus
Subject: 04/08: gnu: Add perl-xml-sax-writer.
Date: Mon, 23 Oct 2017 18:07:00 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 33b592eed3b6652a8cb55b9dfcc33b22ab6609cc
Author: Petter <address@hidden>
Date:   Mon Oct 23 08:50:03 2017 +0200

    gnu: Add perl-xml-sax-writer.
    
    * gnu/packages/xml.scm (perl-xml-sax-writer): New variable.
    
    Signed-off-by: Ricardo Wurmus <address@hidden>
---
 gnu/packages/xml.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 749ea81..6463399 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1337,3 +1337,28 @@ character events in one chunk.  They can, but are not 
forced to, and most
 don't.  This filter does the trivial but oft-repeated task of putting all
 characters into a single event.")
     (license license:perl-license)))
+
+(define-public perl-xml-sax-writer
+  (package
+    (name "perl-xml-sax-writer")
+    (version "0.57")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://cpan/authors/id/P/PE/PERIGRIN/"
+                    "XML-SAX-Writer-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1w1cd1ybxdvhmnxdlkywi3x5ka3g4md42kyynksjc09vyizd0q9x"))))
+    (build-system perl-build-system)
+    (propagated-inputs
+     `(("perl-libxml" ,perl-libxml)
+       ("perl-xml-filter-buffertext" ,perl-xml-filter-buffertext)
+       ("perl-xml-namespacesupport", perl-xml-namespacesupport)
+       ("perl-xml-sax-base" ,perl-xml-sax-base)))
+    (home-page "http://search.cpan.org/dist/XML-SAX-Writer/";)
+    (synopsis "SAX2 XML Writer")
+    (description
+     "This is an XML writer that understands SAX2.  It is based on
address@hidden::Handler::YAWriter}.")
+    (license license:perl-license)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]