mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add minixml.
* gnu/packages/xml.scm (minixml): New variable.
This commit is contained in:
parent
95283f3fee
commit
96f8d991ec
1 changed files with 22 additions and 0 deletions
|
@ -467,3 +467,25 @@ (define-public xmlsec
|
|||
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+)))
|
||||
|
|
Loading…
Reference in a new issue