ngz pushed a commit to branch master
in repository guix.
commit fd62a5d5c12f5b013081227578661dfa23b8e1d2
Author: Christopher Howard <[email protected]>
AuthorDate: Sun Apr 23 16:34:54 2023 +0200
gnu: Add go-git-sr-ht-adnano-go-gemini.
* gnu/packages/golang.scm (go-git-sr-ht-adnano-go-gemini): New variable.
Signed-off-by: Nicolas Goaziou <[email protected]>
---
gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index aebb080dc3..60ae34dc64 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -38,6 +38,7 @@
;;; Copyright © 2022 Dhruvin Gandhi <[email protected]>
;;; Copyright © 2022, 2023 Nicolas Graves <[email protected]>
;;; Copyright © 2022 ( <[email protected]>
+;;; Copyright © 2022 Christopher Howard <[email protected]>
;;; Copyright © 2023 Hilton Chain <[email protected]>
;;; Copyright © 2023 Timo Wilken <[email protected]>
;;;
@@ -10744,6 +10745,32 @@ or capture raw audio.")
programs that use traditional command lines.")
(license license:bsd-3)))
+(define-public go-git-sr-ht-adnano-go-gemini
+ (package
+ (name "go-git-sr-ht-adnano-go-gemini")
+ (version "0.2.3")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~adnano/go-gemini")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0mv4x4cfwyhh77wfb3r221bhr84x4nmjpgysnvvjgmbnnafsgfns"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "git.sr.ht/~adnano/go-gemini"))
+ (propagated-inputs
+ (list go-golang-org-x-net go-golang-org-x-text))
+ (home-page "https://git.sr.ht/~adnano/go-gemini")
+ (synopsis "Gemini protocol in Go")
+ (description
+ "The @code{gemini} package implements the Gemini protocol in Go. It
+provides an API similar to that of NET/HTTP to facilitate the development of
+Gemini clients and servers.")
+ (license license:expat)))
+
(define-public go-git-sr-ht-sircmpwn-getopt
(package
(name "go-git-sr-ht-sircmpwn-getopt")