all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#61638] [PATCH] gnu: guile-xyz: Add guile-gemini
@ 2023-02-19 19:18 Michal Atlas
  2023-03-04 17:46 ` bug#61638: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Michal Atlas @ 2023-02-19 19:18 UTC (permalink / raw)
  To: 61638; +Cc: Michal Atlas

* gnu/packages/guile-xyz.scm (guile-gemini): New variable

---
 gnu/packages/guile-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 67b47581e5..b8710f1696 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -4518,6 +4518,32 @@ (define-public guile-websocket
     (home-page "https://dthompson.us/projects/guile-websocket.html")
     (license license:lgpl3+)))
 
+(define-public guile-gemini
+  (package
+    (name "guile-gemini")
+    (version "0.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/flatwhatson/guile-gemini")
+                    (commit "6d70c5dc6b35c26103f560f7e63c770a424dbca2")))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0rvqqirwsqn3nspr6z1smfp3rj7gc7hfq7cmadx7zxbr3yg5y04x"))))
+    (build-system guile-build-system)
+    (arguments
+     '(#:source-directory "src"))
+    (inputs (list guile-3.0-latest gnutls))
+    (propagated-inputs (list guile-fibers-1.1))
+    (home-page "https://github.com/flatwhatson/guile-gemini")
+    (synopsis "Guile implementation of the Gemini protocol")
+    (description
+     "Guile Gemini is an implementation of the Gemini protocol in Guile Scheme,
+providing both client and server functionality.  It uses GnuTLS to meet
+Gemini's TLS requirements, and Guile Fibers for concurrency.")
+    (license license:lgpl3+)))
+
 (define-public guile-rdf
   (package
     (name "guile-rdf")

base-commit: 636b771536b95d15a2fd68b468deeebac97d6bee
-- 
2.39.1





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#61638: [PATCH] gnu: guile-xyz: Add guile-gemini
  2023-02-19 19:18 [bug#61638] [PATCH] gnu: guile-xyz: Add guile-gemini Michal Atlas
@ 2023-03-04 17:46 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2023-03-04 17:46 UTC (permalink / raw)
  To: Michal Atlas; +Cc: 61638-done

[-- Attachment #1: Type: text/plain, Size: 190 bytes --]

Hi Michal,

Michal Atlas <michal_atlas+git@posteo.net> skribis:

> * gnu/packages/guile-xyz.scm (guile-gemini): New variable

Applied with the changes below.

Thanks!

Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 648 bytes --]

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 2ed7a49dc8..ca5131c037 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -4534,8 +4534,8 @@ (define-public guile-gemini
     (build-system guile-build-system)
     (arguments
      '(#:source-directory "src"))
-    (inputs (list guile-3.0-latest gnutls))
-    (propagated-inputs (list guile-fibers-1.1))
+    (inputs (list guile-3.0-latest))
+    (propagated-inputs (list guile-fibers-1.1 guile-gnutls))
     (home-page "https://github.com/flatwhatson/guile-gemini")
     (synopsis "Guile implementation of the Gemini protocol")
     (description

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-03-04 17:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-19 19:18 [bug#61638] [PATCH] gnu: guile-xyz: Add guile-gemini Michal Atlas
2023-03-04 17:46 ` bug#61638: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.