mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 13:09:23 -05:00
gnu: cl-eclector: Update to 0.9.0-0.d499b09.
* gnu/packages/lisp-xyz.scm (sbcl-eclector): Update to 0.9.0-0.d499b09. Change-Id: Idb4dd189c39eed98b7992271a5dd4354c02ef641 Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
3f5023a503
commit
fe4c2a1277
1 changed files with 30 additions and 28 deletions
|
@ -18196,33 +18196,35 @@ (define-public cl-concrete-syntax-tree
|
|||
(sbcl-package->cl-source-package sbcl-concrete-syntax-tree))
|
||||
|
||||
(define-public sbcl-eclector
|
||||
(package
|
||||
(name "sbcl-eclector")
|
||||
(version "0.9.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/s-expressionists/Eclector")
|
||||
(commit version)))
|
||||
(file-name (git-file-name "cl-eclector" version))
|
||||
(sha256
|
||||
(base32 "10whwpz08fkdcz59sz1b6rn5r1pdns5wnsb1g26gppiv3rrg3cvh"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(native-inputs
|
||||
(list sbcl-fiveam))
|
||||
(inputs
|
||||
(list sbcl-acclimation
|
||||
sbcl-alexandria
|
||||
sbcl-closer-mop
|
||||
sbcl-concrete-syntax-tree))
|
||||
(arguments
|
||||
'(#:asd-systems '("eclector"
|
||||
"eclector-concrete-syntax-tree")))
|
||||
(home-page "https://s-expressionists.github.io/Eclector/")
|
||||
(synopsis "Highly customizable, portable Common Lisp reader")
|
||||
(description
|
||||
"Eclector is a portable Common Lisp reader that is highly customizable,
|
||||
(let ((commit "d499b09142c7e39b4ef52e821fa767d5a8d606a0")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "sbcl-eclector")
|
||||
(version (git-version "0.9.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/s-expressionists/Eclector")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name "cl-eclector" version))
|
||||
(sha256
|
||||
(base32 "1sg8wmdpm8pcjwk394way5vs2ya3r995lddmi51q9zfn9hmzb7gn"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(native-inputs
|
||||
(list sbcl-fiveam))
|
||||
(inputs
|
||||
(list sbcl-acclimation
|
||||
sbcl-alexandria
|
||||
sbcl-closer-mop
|
||||
sbcl-concrete-syntax-tree))
|
||||
(arguments
|
||||
'(#:asd-systems '("eclector"
|
||||
"eclector-concrete-syntax-tree")))
|
||||
(home-page "https://s-expressionists.github.io/Eclector/")
|
||||
(synopsis "Highly customizable, portable Common Lisp reader")
|
||||
(description
|
||||
"Eclector is a portable Common Lisp reader that is highly customizable,
|
||||
can recover from errors and can return concrete syntax trees.
|
||||
|
||||
In contrast to many other reader implementations, eclector can recover from
|
||||
|
@ -18231,7 +18233,7 @@ (define-public sbcl-eclector
|
|||
|
||||
It can also produce instances of the concrete syntax tree classes provided by
|
||||
the concrete syntax tree library.")
|
||||
(license license:bsd-2)))
|
||||
(license license:bsd-2))))
|
||||
|
||||
(define-public ecl-eclector
|
||||
(sbcl-package->ecl-package sbcl-eclector))
|
||||
|
|
Loading…
Reference in a new issue