gnu: sbcl-iolib: Update to 0.8.4.

* gnu/packages/lisp-xyz.scm (sbcl-iolib): Update to 0.8.4.
This commit is contained in:
Pierre Neidhardt 2021-06-09 08:00:28 +02:00
parent 86bb77608d
commit 054ebbf7db
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -5858,23 +5858,20 @@ (define-public ecl-swap-bytes
(sbcl-package->ecl-package sbcl-swap-bytes))
(define-public sbcl-iolib
;; Latest release is from June 2017.
(let ((commit "7f5ea3a8457a29d224b24653c2b3657fb1898021")
(revision "2"))
(package
(name "sbcl-iolib")
(version (git-version "0.8.3" revision commit))
(version "0.8.4")
(home-page "https://github.com/sionescu/iolib")
(source
(origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit commit)))
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1bg5w7lm61hqk4b0svmri8a590q36z76jfa0sdgzb39r98c04w12"))))
"1f43jqqqwp9n7xksqxw91myapsdbc2dxck6nd6flakbnp9haylyq"))))
(build-system asdf-build-system/sbcl)
(inputs
`(("alexandria" ,sbcl-alexandria)
@ -5910,7 +5907,7 @@ (define-public sbcl-iolib
the standard Common Lisp library. It contains a socket library, a DNS
resolver, an I/O multiplexer(which supports @code{select(2)}, @code{epoll(4)}
and @code{kqueue(2)}), a pathname library and file-system utilities.")
(license license:expat))))
(license license:expat)))
(define-public cl-iolib
(let ((parent (sbcl-package->cl-source-package sbcl-iolib)))