me
/
guix
Archived
1
0
Fork 0

gnu: Add cl-xmls.

* gnu/packages/lisp-xyz.scm (sbcl-xmls, cl-xmls, ecl-xmls): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
master
Adam 2020-09-30 12:17:19 +03:00 committed by Guillaume Le Vaillant
parent 582d0108d6
commit 7722c367bc
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 31 additions and 0 deletions

View File

@ -14145,3 +14145,34 @@ processing.")
(define-public ecl-lambda-fiddle
(sbcl-package->ecl-package sbcl-lambda-fiddle))
(define-public sbcl-xmls
(let ((commit "18546f0850b1338e03997ffd1696add1cb1800d1") ;; no tagged branch
(revision "1"))
(package
(name "sbcl-xmls")
(version (git-version "3.0.2" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rpgoldman/xmls")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1lmvfml2ldbb1wkhm25jqqk2bhwsz52hhcgljbnzj1xr8xhc3anp"))))
(native-inputs
`(("fiveam" ,sbcl-fiveam)))
(build-system asdf-build-system/sbcl)
(home-page "https://github.com/rpgoldman/xmls")
(synopsis "Non-validating XML parser for Common Lisp")
(description "Xmls is a self-contained, easily embedded parser that
recognizes a useful subset of the XML spec. It provides a simple mapping from
XML to Lisp structures or s-expressions and back.")
(license license:bsd-2))))
(define-public cl-xmls
(sbcl-package->cl-source-package sbcl-xmls))
(define-public ecl-xmls
(sbcl-package->ecl-package sbcl-xmls))