From 58cc3b385bb573caee09213d7a4394920220269f Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Fri, 1 Feb 2013 23:23:08 +0100 Subject: gnu: Add libxslt. * gnu/packages/xml.scm (libxslt): New variable. --- gnu/packages/xml.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'gnu/packages/xml.scm') diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 642caf02b8..1d7060a044 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -19,6 +19,7 @@ (define-module (gnu packages xml) #:use-module (gnu packages) + #:use-module (gnu packages gnupg) #:use-module (gnu packages perl) #:use-module (gnu packages python) #:use-module ((guix licenses) @@ -67,3 +68,25 @@ (define-public libxml2 "Libxml2 is the XML C parser and toolkit developed for the Gnome project (but it is usable outside of the Gnome platform).") (license license:x11))) + +(define-public libxslt + (package + (name "libxslt") + (version "1.1.28") + (source (origin + (method url-fetch) + (uri (string-append "ftp://xmlsoft.org/libxslt/libxslt-" + version ".tar.gz")) + (sha256 + (base32 + "13029baw9kkyjgr7q3jccw2mz38amq7mmpr5p3bh775qawd1bisz")))) + (build-system gnu-build-system) + (home-page "http://xmlsoft.org/XSLT/index.html") + (synopsis "libxslt, a C library for applying XSLT stylesheets to XML documents") + (inputs `(("libgcrypt" ,libgcrypt) + ("libxml2" ,libxml2) + ("python" ,python))) + (description + "Libxslt is an XSLT C library developed for the GNOME project. It is +based on libxml for XML parsing, tree manipulation and XPath support.") + (license license:x11))) -- cgit v1.2.3