mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add xpath.
* gnu/packages/lisp-xyz.scm (cl-xpath, sbcl-xpath): New variables.
This commit is contained in:
parent
e37bb39971
commit
3ddfe4c1a0
1 changed files with 34 additions and 0 deletions
|
@ -19124,3 +19124,37 @@ (define-public cl-overlord
|
|||
;; FIXME: Broken on ECL? https://github.com/ruricolist/overlord/issues/25
|
||||
;; (define-public ecl-overlord
|
||||
;; (sbcl-package->ecl-package sbcl-overlord))
|
||||
|
||||
(define-public sbcl-xpath
|
||||
;; No release.
|
||||
(let ((commit "d364da693a534e23bd5eb3a85420e9c25e6c75b3"))
|
||||
(package
|
||||
(name "sbcl-xpath")
|
||||
(version (git-version "0.1" "1" commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/sharplispers/xpath/")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1fb03fgnzrvh22lw1jdg04pmyja5fib5n42rzwp5mhr829yvxkvp"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(inputs
|
||||
`(("cxml" ,sbcl-cxml)
|
||||
("parse-number" ,sbcl-parse-number)
|
||||
("cl-ppcre" ,sbcl-cl-ppcre)
|
||||
("yacc" ,sbcl-cl-yacc)))
|
||||
(home-page "https://github.com/sharplispers/xpath/")
|
||||
(synopsis "Implementation of the XML Path Language (XPath) Version 1.0")
|
||||
(description
|
||||
"This library is an implementation of the XML Path Language (XPath)
|
||||
Version 1.0.")
|
||||
(license license:bsd-2))))
|
||||
|
||||
;; According to
|
||||
;; https://github.com/sharplispers/xpath/blob/master/doc/index.xml ECL is not
|
||||
;; supported.
|
||||
(define-public cl-xpath
|
||||
(sbcl-package->cl-source-package sbcl-xpath))
|
||||
|
|
Loading…
Reference in a new issue