gnu: Add cl-parser-combinators.
* gnu/packages/lisp-xyz.scm (sbcl-parser-combinators, ecl-parser-combinators, cl-parser-combinators): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
16342832c5
commit
77bd1b5be0
1 changed files with 42 additions and 0 deletions
|
@ -16934,3 +16934,45 @@ (define-public ecl-gettext
|
|||
|
||||
(define-public cl-gettext
|
||||
(sbcl-package->cl-source-package sbcl-gettext))
|
||||
|
||||
(define-public sbcl-parser-combinators
|
||||
(let ((commit "9c7569a4f6af5e60c0d3a51d9c15c16d1714c845")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "sbcl-parser-combinators")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Ramarren/cl-parser-combinators")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name "parser-combinators" version))
|
||||
(sha256
|
||||
(base32 "1k49vha5xm2cklayzpqwg73n4v93xwsbs5in6342pkkiimnidhs8"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(arguments
|
||||
;; FIXME: (Sharlatan-20210523T184237+0100): Tests require `femlisp', which
|
||||
;; is quite chunky not packaged system yet, enable them when it's packed.
|
||||
`(#:tests? #f
|
||||
#:test-asd-file "parser-combinators-tests.asd"))
|
||||
;; (native-inputs
|
||||
;; `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)
|
||||
;; ("infix" ,sbcl-femlisp)))
|
||||
(inputs
|
||||
`(("alexandria" ,sbcl-alexandria)
|
||||
("cl-containers" ,sbcl-cl-containers)
|
||||
("cl-ppcre" ,sbcl-cl-ppcre)
|
||||
("iterate" ,sbcl-iterate)))
|
||||
(home-page "https://github.com/Ramarren/cl-parser-combinators")
|
||||
(synopsis "Parser combinators in Common Lisp")
|
||||
(description
|
||||
"PARSER-COMBINATORS is a library implementing monadic parser
|
||||
combinators in Common Lisp, similar in concept to Haskell Parsec system.")
|
||||
(license license:bsd-3))))
|
||||
|
||||
(define-public ecl-parser-combinators
|
||||
(sbcl-package->ecl-package sbcl-parser-combinators))
|
||||
|
||||
(define-public cl-parser-combinators
|
||||
(sbcl-package->cl-source-package sbcl-parser-combinators))
|
||||
|
|
Loading…
Reference in a new issue