mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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 <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
5885e67164
commit
fd62a5d5c1
1 changed files with 27 additions and 0 deletions
|
@ -38,6 +38,7 @@
|
|||
;;; Copyright © 2022 Dhruvin Gandhi <contact@dhruvin.dev>
|
||||
;;; Copyright © 2022, 2023 Nicolas Graves <ngraves@ngraves.fr>
|
||||
;;; Copyright © 2022 ( <paren@disroot.org>
|
||||
;;; Copyright © 2022 Christopher Howard <christopher@librehacker.com>
|
||||
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
|
||||
;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
|
||||
;;;
|
||||
|
@ -10744,6 +10745,32 @@ (define-public go-github-com-pborman-getopt
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue