mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: cl-reexport: Several fixes.
* gnu/packages/lisp-xyz.scm (sbcl-cl-reexport)[source]: Hardcode URL. [inputs]: Use new style. [synopsis, description]: Fix them.
This commit is contained in:
parent
c175bca67a
commit
aa350909c1
1 changed files with 8 additions and 6 deletions
|
@ -5792,20 +5792,22 @@ XSD type library.")
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url home-page)
|
(url "https://github.com/takagi/cl-reexport")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name "cl-reexport" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1cwpn1m3wrl0fl9plznn7p464db646gnfc8zkyk97dyxski2aq0x"))))
|
"1cwpn1m3wrl0fl9plznn7p464db646gnfc8zkyk97dyxski2aq0x"))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("alexandria" ,sbcl-alexandria)))
|
(list sbcl-alexandria))
|
||||||
(arguments
|
(arguments
|
||||||
;; TODO: Tests fail because cl-test-more is missing, but I can't find it online.
|
;; TODO: Tests fail because cl-test-more is missing, but I can't find it online.
|
||||||
`(#:tests? #f))
|
`(#:tests? #f))
|
||||||
(synopsis "HTTP cookie manager for Common Lisp")
|
(synopsis "Reexport external symbols in other Common Lisp packages")
|
||||||
(description "cl-cookie is a Common Lisp library featuring parsing of
|
(description
|
||||||
cookie headers, cookie creation, cookie jar creation and more.")
|
"Cl-reexport makes a package reexport symbols which are external
|
||||||
|
symbols in other Common Lisp packages. This fanctionality is intended to be
|
||||||
|
used with (virtual) hierarchical packages.")
|
||||||
(license license:llgpl))))
|
(license license:llgpl))))
|
||||||
|
|
||||||
(define-public cl-reexport
|
(define-public cl-reexport
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue