diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-08-31 17:33:56 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-09-02 08:44:55 +0200 |
commit | 96f8d991ecd21a5449289286157e0850c8aac081 (patch) | |
tree | 50f90afcb7bd7e6c210a599d83a3167aed48770c /gnu/packages | |
parent | 95283f3feedfade69d04fca92aff31ca0bfdc7a5 (diff) | |
download | guix-96f8d991ecd21a5449289286157e0850c8aac081.tar guix-96f8d991ecd21a5449289286157e0850c8aac081.tar.gz |
gnu: Add minixml.
* gnu/packages/xml.scm (minixml): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/xml.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index 2bce636f1c..ddb73143a1 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -467,3 +467,25 @@ Canonical XML (part of Libxml2) and Exclusive Canonical XML (part of Libxml2).") (license (license:x11-style "file://COPYING" "See 'COPYING' in the distribution.")))) + +(define-public minixml + (package + (name "minixml") + (version "2.9") + (source (origin + (method url-fetch) + (uri (string-append "http://www.msweet.org/files/project3/mxml-" + version ".tar.gz")) + (sha256 + (base32 + "14pzhlfidj5v1qbxy7a59yn4jz9pnjrs2zwalz228jsq7ijm9vfd")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f)) ;no "check" target + (home-page "http://www.minixml.org/") + (synopsis "Small XML parsing library") + (description + "Mini-XML is a small C library to read and write XML files and strings in +UTF-8 and UTF-16 encoding.") + ;; LGPL 2.0+ with additional exceptions for static linking + (license license:lgpl2.0+))) |