[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/15: gnu: Add cl-blackbird.
From: |
guix-commits |
Subject: |
13/15: gnu: Add cl-blackbird. |
Date: |
Fri, 17 Jan 2020 07:47:02 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit 34f9b5814c99b4437997613d3935e4dc1c599fe2
Author: Guillaume Le Vaillant <address@hidden>
AuthorDate: Fri Jan 17 11:30:49 2020 +0100
gnu: Add cl-blackbird.
* gnu/packages/lisp-xyz.scm (sbcl-blackbird, cl-blackbird, ecl-blackbird):
New
variables.
---
gnu/packages/lisp-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index c4e27e1..2033a3e 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -9591,3 +9591,38 @@ Common Lisp. It uses the libuv library as backend.")
(define-public ecl-cl-async-ssl
(sbcl-package->ecl-package sbcl-cl-async-ssl))
+
+(define-public sbcl-blackbird
+ (let ((commit "d361f81c1411dec07f6c2dcb11c78f7aea9aaca8")
+ (revision "1"))
+ (package
+ (name "sbcl-blackbird")
+ (version (git-version "0.5.2" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/orthecreedence/blackbird.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0xfds5yaya64arzr7w1x38karyz11swzbhxx1afldpradj9dh19c"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ `(("vom" ,sbcl-vom)))
+ (native-inputs
+ `(("cl-async" ,sbcl-cl-async)
+ ("fiveam" ,sbcl-fiveam)))
+ (synopsis "Promise implementation for Common Lisp")
+ (description
+ "This is a standalone promise implementation for Common Lisp. It is
+the successor to the now-deprecated cl-async-future project.")
+ (home-page "http://orthecreedence.github.io/blackbird/")
+ (license license:expat))))
+
+(define-public cl-blackbird
+ (sbcl-package->cl-source-package sbcl-blackbird))
+
+(define-public ecl-blackbird
+ (sbcl-package->ecl-package sbcl-blackbird))
- 06/15: gnu: Add cl-vom., (continued)
- 06/15: gnu: Add cl-vom., guix-commits, 2020/01/17
- 11/15: gnu: Add cl-async-repl., guix-commits, 2020/01/17
- 14/15: gnu: Add cl-async-future., guix-commits, 2020/01/17
- 07/15: gnu: Add cl-libuv., guix-commits, 2020/01/17
- 08/15: gnu: Add cl-async-base., guix-commits, 2020/01/17
- 12/15: gnu: Add cl-async-ssl., guix-commits, 2020/01/17
- 09/15: gnu: Add cl-async-util., guix-commits, 2020/01/17
- 03/15: gnu: Add cl-fset., guix-commits, 2020/01/17
- 10/15: gnu: Add cl-async., guix-commits, 2020/01/17
- 15/15: gnu: Add cl-green-threads., guix-commits, 2020/01/17
- 13/15: gnu: Add cl-blackbird.,
guix-commits <=