me
/
guix
Archived
1
0
Fork 0

gnu: sbcl-cl-syntax-annot: Inherit from sbcl-cl-syntax.

* gnu/packages/lisp-xyz.scm (sbcl-cl-syntax-annot): Inherit from
  sbcl-cl-syntax and remove unnecessary fields.
master
Pierre Neidhardt 2020-05-06 14:49:38 +02:00
parent f15cc738f4
commit 0627ad3002
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 4 additions and 16 deletions

View File

@ -3975,30 +3975,18 @@ PROPER-LIST, ASSOCIATION-LIST, PROPERTY-LIST and TUPLE.")
(define-public sbcl-cl-syntax-annot
(package
(inherit sbcl-cl-syntax)
(name "sbcl-cl-syntax-annot")
(version "0.0.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/m2ym/cl-syntax.git")
(commit "03f0c329bbd55b8622c37161e6278366525e2ccc")))
(file-name (git-file-name name version))
(sha256
(base32 "17ran8xp77asagl31xv8w819wafh6whwfc9p6dgx22ca537gyl4y"))))
(build-system asdf-build-system/sbcl)
(arguments
'(#:asd-file "cl-syntax-annot.asd"
#:asd-system-name "cl-syntax-annot"))
(inputs
`(("sbcl-cl-syntax" ,sbcl-cl-syntax)
("sbcl-cl-annot" ,sbcl-cl-annot)))
(home-page "https://github.com/m2ym/cl-syntax")
(synopsis "Reader Syntax Coventions for Common Lisp and SLIME")
(synopsis "Common Lisp reader Syntax for cl-annot")
(description
"CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and
SLIME.")
(license license:llgpl)))
"CL-SYNTAX provides reader syntax coventions for Common Lisp and
@code{cl-annot}.")))
(define-public cl-syntax-annot
(sbcl-package->cl-source-package sbcl-cl-syntax-annot))