gnu: sbcl-static-vectors: Update to 1.8.4.

* gnu/packages/lisp-xyz.scm (sbcl-static-vectors): Update to 1.8.4.
This commit is contained in:
Guillaume Le Vaillant 2020-02-04 11:48:29 +01:00
parent dbf6de5881
commit ba55cbda75
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -4102,20 +4102,18 @@ Lisp.")
(sbcl-package->cl-source-package sbcl-fast-http)) (sbcl-package->cl-source-package sbcl-fast-http))
(define-public sbcl-static-vectors (define-public sbcl-static-vectors
(let ((commit "0681eac1f49370cde03e64b077251e8abf47d702")
(revision "1"))
(package (package
(name "sbcl-static-vectors") (name "sbcl-static-vectors")
(version (git-version "1.8.3" revision commit)) (version "1.8.4")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/sionescu/static-vectors.git") (url "https://github.com/sionescu/static-vectors.git")
(commit commit))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "138nlsq14hv8785ycjm6jw3i6ablhq8vcwys7q09y80arcgrg6r3")))) (base32 "0qvf9z6bhwhm8n45fjwkm7j8dcb58szfvndky65cyn4lpdval7m1"))))
(native-inputs (native-inputs
`(("sbcl-fiveam" ,sbcl-fiveam))) `(("sbcl-fiveam" ,sbcl-fiveam)))
(inputs (inputs
@ -4127,7 +4125,7 @@ Lisp.")
(description (description
"With @code{static-vectors}, you can create vectors allocated in static "With @code{static-vectors}, you can create vectors allocated in static
memory.") memory.")
(license license:expat)))) (license license:expat)))
(define-public cl-static-vectors (define-public cl-static-vectors
(sbcl-package->cl-source-package sbcl-static-vectors)) (sbcl-package->cl-source-package sbcl-static-vectors))