guix-commits
[Top][All Lists]
Advanced

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

06/08: gnu: Add usocket.


From: guix-commits
Subject: 06/08: gnu: Add usocket.
Date: Sun, 25 Nov 2018 07:55:34 -0500 (EST)

ambrevar pushed a commit to branch master
in repository guix.

commit 79dc47c9c937ecf08680dace26cca029d7de4a2e
Author: Pierre Neidhardt <address@hidden>
Date:   Sun Nov 25 13:32:49 2018 +0100

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

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 359f837..06d1e6f 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -3640,3 +3640,21 @@ the abstraction and portability layer as thin as 
possible.")
 
 (define-public ecl-socket-server
   (sbcl-package->ecl-package sbcl-usocket-server))
+
+(define-public sbcl-usocket
+  (package
+    (inherit sbcl-usocket-boot0)
+    (name "sbcl-usocket")
+    (arguments
+     ;; FIXME: Tests need network access?
+     `(#:tests? #f))
+    (native-inputs
+     ;; Testing only.
+     `(("usocket-server" ,sbcl-usocket-server)
+       ("rt" ,sbcl-rt)))))
+
+(define-public cl-usocket
+  (sbcl-package->cl-source-package sbcl-usocket))
+
+(define-public ecl-socket
+  (sbcl-package->ecl-package sbcl-usocket))



reply via email to

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