gnu: sbcl-nibbles: Update to 0.14-1.8e6b9b4.

* gnu/packages/lisp-xyz.scm (sbcl-nibbles): Update to 0.14-1.8e6b9b4.
This commit is contained in:
Guillaume Le Vaillant 2020-12-19 18:40:29 +01:00
parent bfe2f67e91
commit b8d4568b11
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F

View File

@ -1644,24 +1644,27 @@ Common Lisp.")
(sbcl-package->ecl-package sbcl-rt)) (sbcl-package->ecl-package sbcl-rt))
(define-public sbcl-nibbles (define-public sbcl-nibbles
;; No tagged release since 2018.
(let ((commit "8e6b9b42d9f69000f55e5c45ad974d9e376ffdbd")
(revision "1"))
(package (package
(name "sbcl-nibbles") (name "sbcl-nibbles")
(version "0.14") (version (git-version "0.14" revision commit))
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/sharplispers/nibbles/") (url "https://github.com/sharplispers/nibbles/")
(commit (string-append "v" version)))) (commit commit)))
(sha256 (sha256
(base32 (base32 "15qlsm82h36pjgvfnbzdg60l21qxbaii4d049jc5y0dn56y93amb"))
"1v7qfgpvdr6nz7v63dj69d26dis0kff3rd8xamr1llfdvza2pm8f"))
(file-name (git-file-name "nibbles" version)))) (file-name (git-file-name "nibbles" version))))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(native-inputs (native-inputs
;; Tests only. ;; Tests only.
`(("rt" ,sbcl-rt))) `(("rt" ,sbcl-rt)))
(synopsis "Common Lisp library for accessing octet-addressed blocks of data") (synopsis
"Common Lisp library for accessing octet-addressed blocks of data")
(description (description
"When dealing with network protocols and file formats, it's common to "When dealing with network protocols and file formats, it's common to
have to read or write 16-, 32-, or 64-bit datatypes in signed or unsigned have to read or write 16-, 32-, or 64-bit datatypes in signed or unsigned
@ -1678,7 +1681,7 @@ functions for doing so are also provided. On some implementations,
reading/writing IEEE singles/doubles (i.e. single-float and double-float) will reading/writing IEEE singles/doubles (i.e. single-float and double-float) will
also be supported.") also be supported.")
(home-page "https://github.com/sharplispers/nibbles") (home-page "https://github.com/sharplispers/nibbles")
(license license:bsd-3))) (license license:bsd-3))))
(define-public cl-nibbles (define-public cl-nibbles
(sbcl-package->cl-source-package sbcl-nibbles)) (sbcl-package->cl-source-package sbcl-nibbles))