summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorEvgeny Pisemsky <mail@pisemsky.site>2026-08-30 15:30:18 +0300
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-09-01 23:02:21 +0100
commitbbf2ee34136017ba0dfabfde0a58a22ddc3d8d43 (patch)
tree235094b5c02e1e0d7b75f7fdcc41b12b0e2c3731 /gnu/packages
parent4977de8b3c1d67c69a5a4ed8859c852d47019118 (diff)
gnu: Add go-github-com-h12w-go-socks5.
* gnu/packages/golang-web.scm (go-github-com-h12w-go-socks5): New variable. Relates-to: guix/guix!10749 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/golang-web.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index bc33bb38b72..42ec487790f 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -10894,6 +10894,33 @@ according to the
10894google.api.http)} annotations in your service definitions.") 10894google.api.http)} annotations in your service definitions.")
10895 (license license:bsd-3))) 10895 (license license:bsd-3)))
10896 10896
10897(define-public go-github-com-h12w-go-socks5
10898 (package
10899 (name "go-github-com-h12w-go-socks5")
10900 (version "0.0.0-20200522160539-76189e178364")
10901 (source
10902 (origin
10903 (method git-fetch)
10904 (uri (git-reference
10905 (url "https://github.com/h12w/go-socks5")
10906 (commit (go-version->git-ref version))))
10907 (file-name (git-file-name name version))
10908 (sha256
10909 (base32 "0nl1ww0qz16sx1hc6bliy1lqpaxmswf6jdiqc92zlk7v1vy3ra7d"))))
10910 (build-system go-build-system)
10911 (arguments
10912 (list
10913 #:import-path "github.com/h12w/go-socks5"))
10914 (home-page "https://github.com/h12w/go-socks5")
10915 (synopsis "SOCKS5 server in Golang")
10916 (description
10917 "This package provides the @code{socks5} package that implements a
10918@url{http://en.wikipedia.org/wiki/SOCKS,SOCKS5 server}. SOCKS (Secure
10919Sockets) is used to route traffic between a client and server through an
10920intermediate proxy layer. This can be used to bypass firewalls or NATs. It's
10921an alternative fork of https://github.com/armon/go-socks5.")
10922 (license license:expat)))
10923
10897(define-public go-github-com-hashicorp-go-cleanhttp 10924(define-public go-github-com-hashicorp-go-cleanhttp
10898 (package 10925 (package
10899 (name "go-github-com-hashicorp-go-cleanhttp") 10926 (name "go-github-com-hashicorp-go-cleanhttp")