mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: cl-misc-extensions: Update to 4.0.3.
* gnu/packages/lisp-xyz.scm (sbcl-misc-extensions): Update to 4.0.3. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Change-Id: I7eb1da2bb4d1491551d0e4e60e76b6ceceee07c7
This commit is contained in:
parent
51966d1bae
commit
888d526822
1 changed files with 19 additions and 21 deletions
|
@ -20341,25 +20341,23 @@ (define-public ecl-mgrs
|
|||
(sbcl-package->ecl-package sbcl-mgrs))
|
||||
|
||||
(define-public sbcl-misc-extensions
|
||||
(let ((commit "101c05112bf2f1e1bbf527396822d2f50ca6327a")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "sbcl-misc-extensions")
|
||||
(version (git-version "3.3" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.common-lisp.net/misc-extensions/devel.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0gz5f4p70qzilnxsnf5lih2n9m4wjcw8hlw4w8mpn9jyhyppyyv0"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(synopsis "Collection of small macros and extensions for Common Lisp")
|
||||
(description
|
||||
"This project is intended as a catchall for small, general-purpose
|
||||
(package
|
||||
(name "sbcl-misc-extensions")
|
||||
(version "4.0.3")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.common-lisp.net/misc-extensions/misc-extensions.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name "cl-misc-extensions" version))
|
||||
(sha256
|
||||
(base32
|
||||
"02hw5k7zfzs736dhpcii8ncvx3ia4l5byw5ngzmhydqscbi4hcvc"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(synopsis "Collection of small macros and extensions for Common Lisp")
|
||||
(description
|
||||
"This project is intended as a catchall for small, general-purpose
|
||||
extensions to Common Lisp. It contains:
|
||||
|
||||
@itemize
|
||||
|
@ -20367,8 +20365,8 @@ (define-public sbcl-misc-extensions
|
|||
@code{let*} and @code{multiple-value-bind},
|
||||
@item @code{gmap}, an iteration macro that generalizes @code{map}.
|
||||
@end itemize\n")
|
||||
(home-page "https://common-lisp.net/project/misc-extensions/")
|
||||
(license license:public-domain))))
|
||||
(home-page "https://common-lisp.net/project/misc-extensions/")
|
||||
(license license:public-domain)))
|
||||
|
||||
(define-public cl-misc-extensions
|
||||
(sbcl-package->cl-source-package sbcl-misc-extensions))
|
||||
|
|
Loading…
Reference in a new issue