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,32 +4102,30 @@ 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") (package
(revision "1")) (name "sbcl-static-vectors")
(package (version "1.8.4")
(name "sbcl-static-vectors") (source
(version (git-version "1.8.3" revision commit)) (origin
(source
(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
`(("sbcl-cffi-grovel" ,sbcl-cffi-grovel) `(("sbcl-cffi-grovel" ,sbcl-cffi-grovel)
("sbcl-cffi" ,sbcl-cffi))) ("sbcl-cffi" ,sbcl-cffi)))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(home-page "http://common-lisp.net/projects/iolib/") (home-page "http://common-lisp.net/projects/iolib/")
(synopsis "Allocate SIMPLE-ARRAYs in static memory") (synopsis "Allocate SIMPLE-ARRAYs in static memory")
(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))