guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

11/15: gnu: Add cl-async-repl.


From: guix-commits
Subject: 11/15: gnu: Add cl-async-repl.
Date: Fri, 17 Jan 2020 07:47:02 -0500 (EST)

glv pushed a commit to branch master
in repository guix.

commit 19f36366c9e99126da49c764d0febb63ceb58d1c
Author: Guillaume Le Vaillant <address@hidden>
AuthorDate: Fri Jan 17 11:03:28 2020 +0100

    gnu: Add cl-async-repl.
    
    * gnu/packages/lisp-xyz.scm (sbcl-cl-async-repl, cl-async-repl,
      ecl-cl-async-repl): New variables.
---
 gnu/packages/lisp-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 64cada8..ded5489 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -9541,3 +9541,21 @@ Common Lisp.  It uses the libuv library as backend.")
 
 (define-public ecl-cl-async
   (sbcl-package->ecl-package sbcl-cl-async))
+
+(define-public sbcl-cl-async-repl
+  (package
+    (inherit sbcl-cl-async-base)
+    (name "sbcl-cl-async-repl")
+    (inputs
+     `(("bordeaux-threads" ,sbcl-bordeaux-threads)
+       ("cl-async" ,sbcl-cl-async)))
+    (arguments
+     (substitute-keyword-arguments (package-arguments sbcl-cl-async-base)
+       ((#:asd-file _ "") "cl-async-repl.asd")))
+    (synopsis "REPL integration for cl-async")))
+
+(define-public cl-async-repl
+  (sbcl-package->cl-source-package sbcl-cl-async-repl))
+
+(define-public ecl-cl-async-repl
+  (sbcl-package->ecl-package sbcl-cl-async-repl))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]