[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#35991] [PATCH 3/9] gnu: Add sbcl-iolib.asdf.
From: |
Pierre Neidhardt |
Subject: |
[bug#35991] [PATCH 3/9] gnu: Add sbcl-iolib.asdf. |
Date: |
Wed, 29 May 2019 16:07:27 +0200 |
* gnu/packages/lisp.scm (sbcl-iolib.asdf): New variable.
---
gnu/packages/lisp.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 537150dd61..697bdbd257 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -5386,3 +5386,33 @@ formats.")
(define-public ecl-swap-bytes
(sbcl-package->ecl-package sbcl-swap-bytes))
+
+(define-public sbcl-iolib.asdf
+ ;; Latest release is from June 2017.
+ (let ((commit "81e20614c0d27f9605bf9766214e236fd31b99b4")
+ (revision "1"))
+ (package
+ (name "sbcl-iolib.asdf")
+ (build-system asdf-build-system/sbcl)
+ (version "0.8.3")
+ (home-page "https://github.com/sionescu/iolib")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1j81r0wm7nfbwl991f26s4npcy7kybzybd3m47rbxy31h0cfcmdm"))))
+ (inputs
+ `(("alexandria" ,sbcl-alexandria)))
+ (arguments
+ '(#:asd-file "iolib.asdf.asd"))
+ (synopsis "ASDF component classes for IOLib, a Common Lisp I/O library")
+ (description "IOlib is to be a better and more modern I/O library than
+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))))
--
2.21.0
- [bug#35984] [PATCH 2/9] gnu: Add swap-bytes., (continued)
- [bug#35991] [PATCH 1/9] gnu: Add idna., Pierre Neidhardt, 2019/05/29
- [bug#35991] [PATCH 7/9] gnu: Add sbcl-iolib.grovel., Pierre Neidhardt, 2019/05/29
- [bug#35991] [PATCH 2/9] gnu: Add swap-bytes., Pierre Neidhardt, 2019/05/29
- [bug#35991] [PATCH 4/9] gnu: Add sbcl-iolib.conf., Pierre Neidhardt, 2019/05/29
- [bug#35991] [PATCH 6/9] gnu: Add sbcl-iolib.base., Pierre Neidhardt, 2019/05/29
- [bug#35991] [PATCH 5/9] gnu: Add sbcl-iolib.common-lisp., Pierre Neidhardt, 2019/05/29
- [bug#35991] [PATCH 8/9] gnu: Add sbcl-iolib., Pierre Neidhardt, 2019/05/29
- [bug#35991] [PATCH 3/9] gnu: Add sbcl-iolib.asdf.,
Pierre Neidhardt <=
- [bug#35991] [PATCH 9/9] gnu: Add sbcl-dbus., Pierre Neidhardt, 2019/05/29