guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add sbcl-find-port, cl-find-port, and ecl-find-port.


From: guix-commits
Subject: 01/01: gnu: Add sbcl-find-port, cl-find-port, and ecl-find-port.
Date: Tue, 7 May 2019 06:44:22 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit bdd30bf00b04b8d236140f865f23e44ea2a28b86
Author: Pierre Neidhardt <address@hidden>
Date:   Tue May 7 12:43:31 2019 +0200

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

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 4eeb801..167c443 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -5288,3 +5288,36 @@ various levels and mix text with expressions.")
 
 (define-public ecl-log4cl
   (sbcl-package->ecl-package sbcl-log4cl))
+
+(define-public sbcl-find-port
+  (let ((commit "00c96a25af93a0f8681d34ec548861f2d7485478")
+        (revision "1"))
+    (package
+      (name "sbcl-find-port")
+      (build-system asdf-build-system/sbcl)
+      (version "0.1")
+      (home-page "https://github.com/eudoxia0/find-port";)
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url home-page)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0d6dzbb45jh0rx90wgs6v020k2xa87mvzas3mvfzvivjvqqlpryq"))))
+      (native-inputs
+       `(("fiveam" ,sbcl-fiveam)))
+      (inputs
+       `(("sbcl-usocket" ,sbcl-usocket)))
+      (synopsis "Find open ports programmatically in Common Lisp")
+      (description "This is a small Common Lisp library that finds an open
+port within a range.")
+      (license license:expat))))
+
+(define-public cl-find-port
+  (sbcl-package->cl-source-package sbcl-find-port))
+
+(define-public ecl-find-port
+  (sbcl-package->ecl-package sbcl-find-port))



reply via email to

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