diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-23 21:02:01 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-23 21:02:12 +0100 |
commit | 12e6ad0816955183d45b5e89cd3810c0792cfa3f (patch) | |
tree | 06845b6e176b8d8c7127a44f08dcc978f99dd426 | |
parent | f9e9c6fac0d27e711c136649458a1190b2598290 (diff) | |
download | guix-12e6ad0816955183d45b5e89cd3810c0792cfa3f.tar guix-12e6ad0816955183d45b5e89cd3810c0792cfa3f.tar.gz |
gnu: Add go-github-com-makeworld-the-better-one-go-gemini-socks5.
* gnu/packages/golang-web.scm (go-github-com-makeworld-the-better-one-go-gemini-socks5): New variable.
Change-Id: Ic65c36840e640f7a845403715f6b1c58e06d06fe
-rw-r--r-- | gnu/packages/golang-web.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 33b0cd3627..bb0712e143 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -1391,6 +1391,32 @@ router.") clients that speak the Gemini protocol.") (license license:isc))) +(define-public go-github-com-makeworld-the-better-one-go-gemini-socks5 + (package + (name "go-github-com-makeworld-the-better-one-go-gemini-socks5") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/makew0rld/go-gemini-socks5") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r8iljs12nhyn3nk5dzsji9hi88fivashbrcb5d42x5rvzry15px")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/makeworld-the-better-one/go-gemini-socks5")) + (propagated-inputs + (list go-golang-org-x-net)) + (home-page "https://github.com/makeworld-the-better-one/go-gemini-socks5") + (synopsis "SOCKS5 proxy for go-gemini") + (description + "This package provides SOCKS5 proxy for +@@url{https://github.com/makeworld-the-better-one/go-gemini,go-gemini}.") + (license license:expat))) + (define-public go-github-com-microcosm-cc-bluemonday (package (name "go-github-com-microcosm-cc-bluemonday") |