sharlatan pushed a commit to branch go-team
in repository guix.

commit 6cdb1f99688bf5844cf325cceb3d8d20ee6e7d53
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Dec 22 01:15:39 2024 +0000

    gnu: Add go-github-com-armon-go-socks5.
    
    * gnu/packages/golang-web.scm (go-github-com-armon-go-socks5): New variable.
    
    Change-Id: I8c06c4c9515aadbcc982da972011b4f9cc128549
---
 gnu/packages/golang-web.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 5757945fef..3403c90abc 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -337,6 +337,34 @@ that of BeautifulSoup.")
 the parse trees produced by the html package.")
     (license license:bsd-2)))
 
+(define-public go-github-com-armon-go-socks5
+  (package
+    (name "go-github-com-armon-go-socks5")
+    (version "0.0.0-20160902184237-e75332964ef5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/armon/go-socks5";)
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "104w10jf0wlxyxi35hf6frndgf0ybz21h54xjmnkivpb6slycpyq"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/armon/go-socks5"))
+    (native-inputs
+     (list go-golang-org-x-net))
+    (home-page "https://github.com/armon/go-socks5";)
+    (synopsis "SOCKS5 server in Golang")
+    (description
+     "This package provides the @code{socks5} package that implements a
+@url{http://en.wikipedia.org/wiki/SOCKS,SOCKS5 server}.  SOCKS (Secure
+Sockets) is used to route traffic between a client and server through an
+intermediate proxy layer.  This can be used to bypass firewalls or NATs.")
+    (license license:expat)))
+
 (define-public go-github-com-audriusbutkevicius-pfilter
   (package
     (name "go-github-com-audriusbutkevicius-pfilter")

Reply via email to