mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
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:
parent
bfe2f67e91
commit
b8d4568b11
1 changed files with 25 additions and 22 deletions
|
@ -1644,26 +1644,29 @@ (define-public ecl-rt
|
|||
(sbcl-package->ecl-package sbcl-rt))
|
||||
|
||||
(define-public sbcl-nibbles
|
||||
(package
|
||||
(name "sbcl-nibbles")
|
||||
(version "0.14")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/sharplispers/nibbles/")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"1v7qfgpvdr6nz7v63dj69d26dis0kff3rd8xamr1llfdvza2pm8f"))
|
||||
(file-name (git-file-name "nibbles" version))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(native-inputs
|
||||
;; Tests only.
|
||||
`(("rt" ,sbcl-rt)))
|
||||
(synopsis "Common Lisp library for accessing octet-addressed blocks of data")
|
||||
(description
|
||||
"When dealing with network protocols and file formats, it's common to
|
||||
;; No tagged release since 2018.
|
||||
(let ((commit "8e6b9b42d9f69000f55e5c45ad974d9e376ffdbd")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "sbcl-nibbles")
|
||||
(version (git-version "0.14" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/sharplispers/nibbles/")
|
||||
(commit commit)))
|
||||
(sha256
|
||||
(base32 "15qlsm82h36pjgvfnbzdg60l21qxbaii4d049jc5y0dn56y93amb"))
|
||||
(file-name (git-file-name "nibbles" version))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(native-inputs
|
||||
;; Tests only.
|
||||
`(("rt" ,sbcl-rt)))
|
||||
(synopsis
|
||||
"Common Lisp library for accessing octet-addressed blocks of data")
|
||||
(description
|
||||
"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
|
||||
flavors. Common Lisp sort of supports this by specifying :element-type for
|
||||
streams, but that facility is underspecified and there's nothing similar for
|
||||
|
@ -1677,8 +1680,8 @@ (define-public sbcl-nibbles
|
|||
functions for doing so are also provided. On some implementations,
|
||||
reading/writing IEEE singles/doubles (i.e. single-float and double-float) will
|
||||
also be supported.")
|
||||
(home-page "https://github.com/sharplispers/nibbles")
|
||||
(license license:bsd-3)))
|
||||
(home-page "https://github.com/sharplispers/nibbles")
|
||||
(license license:bsd-3))))
|
||||
|
||||
(define-public cl-nibbles
|
||||
(sbcl-package->cl-source-package sbcl-nibbles))
|
||||
|
|
Loading…
Reference in a new issue