guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add cl-gopher.


From: guix-commits
Subject: branch master updated: gnu: Add cl-gopher.
Date: Fri, 07 Jan 2022 06:47:01 -0500

This is an automated email from the git hooks/post-receive script.

ambrevar pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new fed39f13f0 gnu: Add cl-gopher.
fed39f13f0 is described below

commit fed39f13f0a640f90d7e3bc0701aa165974f45cd
Author: Pierre Neidhardt <mail@ambrevar.xyz>
AuthorDate: Fri Jan 7 12:43:54 2022 +0100

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

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 062f8e683e..45c70387a1 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -20181,3 +20181,42 @@ APL.")
 
 (define-public ecl-april
   (sbcl-package->ecl-package sbcl-april))
+
+(define-public sbcl-cl-gopher
+  (let ((commit "29fbe52e3f377e24e8bde77b00789a1e32a75b90")
+        (revision "1"))
+    (package
+      (name "sbcl-cl-gopher")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/knusbaum/cl-gopher";)
+               (commit commit)))
+         (file-name (git-file-name "cl-gopher" version))
+         (sha256
+          (base32 "1dilgbnbgbrn7wglv8n03kpgc94l43mgv9y0akg7h5mwn8ii5p6m"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs
+       (list sbcl-bordeaux-threads
+             sbcl-drakma
+             sbcl-flexi-streams
+             sbcl-quri
+             sbcl-split-sequence
+             sbcl-usocket))
+      (home-page "https://github.com/knusbaum/cl-gopher";)
+      (synopsis "Gopher protocol library in Common Lisp")
+      (description
+       "@code{cl-gopher} is a Common Lisp library for interacting with the
+Gopher protocol.
+
+It is suitable for building both clients and servers, and provides a sample
+client.")
+      (license license:bsd-2))))
+
+(define-public cl-gopher
+  (sbcl-package->cl-source-package sbcl-cl-gopher))
+
+(define-public ecl-cl-gopher
+  (sbcl-package->ecl-package sbcl-cl-gopher))



reply via email to

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