mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-05-25 13:35:03 +00:00
rosenthal: Add socks2http.
* rosenthal/packages/networking.scm (socks2http): New variable.
This commit is contained in:
parent
c8c4a6f991
commit
87db633fab
@ -62,3 +62,28 @@ webserver). Cloudflare attracts client requests and sends them to you via
|
|||||||
this daemon, without requiring you to poke holes on your firewall --- your
|
this daemon, without requiring you to poke holes on your firewall --- your
|
||||||
origin can remain as closed as possible.")
|
origin can remain as closed as possible.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public socks2http
|
||||||
|
(package
|
||||||
|
(name "socks2http")
|
||||||
|
(version "0.0.0-20160712034938-bafa2cde8eb4")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/zenhack/socks2http")
|
||||||
|
(commit (go-version->git-ref version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0c388rir9d0cy5vxqxj7m72nra0w5cya4mmgqdcvqmnk2vawdyb9"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:install-source? #f
|
||||||
|
#:import-path "github.com/zenhack/socks2http"))
|
||||||
|
(inputs (list go-golang-org-x-net))
|
||||||
|
(home-page "https://github.com/zenhack/socks2http")
|
||||||
|
(synopsis "SOCKS5 to HTTP proxy")
|
||||||
|
(description
|
||||||
|
"This package provides a simple tool to plumb HTTP proxy requests through
|
||||||
|
a SOCKS5 proxy.")
|
||||||
|
(license license:expat)))
|
||||||
|
Loading…
Reference in New Issue
Block a user