mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add cl-async-base.
* gnu/packages/lisp-xyz.scm (sbcl-cl-async-base, cl-async-base, ecl-cl-async-base): New variables.
This commit is contained in:
parent
37b48dc181
commit
1cc1dfbbb0
1 changed files with 36 additions and 0 deletions
|
@ -9464,3 +9464,39 @@ (define-public cl-libuv
|
|||
|
||||
(define-public ecl-cl-libuv
|
||||
(sbcl-package->ecl-package sbcl-cl-libuv))
|
||||
|
||||
(define-public sbcl-cl-async-base
|
||||
(let ((commit "f6423e44404a44434d803605e0d2e17199158e28")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "sbcl-cl-async-base")
|
||||
(version (git-version "0.6.1" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/orthecreedence/cl-async.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"11xi9dxb8mjgwzrkj88i0xkgk26z9w9ddxzbv6xsvfc1d4x5cf4x"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(inputs
|
||||
`(("bordeaux-threads" ,sbcl-bordeaux-threads)
|
||||
("cffi" ,sbcl-cffi)
|
||||
("cl-libuv" ,sbcl-cl-libuv)))
|
||||
(arguments
|
||||
`(#:asd-file "cl-async.asd"))
|
||||
(synopsis "Base system for cl-async")
|
||||
(description
|
||||
"Cl-async is a library for general purpose, non-blocking programming in
|
||||
Common Lisp. It uses the libuv library as backend.")
|
||||
(home-page "https://orthecreedence.github.io/cl-async/")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public cl-async-base
|
||||
(sbcl-package->cl-source-package sbcl-cl-async-base))
|
||||
|
||||
(define-public ecl-cl-async-base
|
||||
(sbcl-package->ecl-package sbcl-cl-async-base))
|
||||
|
|
Loading…
Reference in a new issue