diff options
author | fis <ybbs.daans@hotmail.com> | 2018-06-12 18:10:19 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-06-15 10:04:59 +0200 |
commit | 0017e55f892828f7a4d29a50f06e5146270ab8cb (patch) | |
tree | dd14bc5471c86bc533ac770a9b6ca93c8686a1a2 /gnu | |
parent | 7b0449712e0a76e3fe9d4f032e9774f5179d3a18 (diff) | |
download | guix-0017e55f892828f7a4d29a50f06e5146270ab8cb.tar guix-0017e55f892828f7a4d29a50f06e5146270ab8cb.tar.gz |
gnu: Add shadowsocks.
* gnu/packages/networking.scm (shadowsocks): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/networking.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index e040ef339c..5cdfec3431 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1902,3 +1902,36 @@ eight bytes) tools low-level I/O programming that provides developers with a consistent asynchronous model using a modern C++ approach.") (license license:boost1.0))) + +(define-public shadowsocks + ;; There are some security fixes after the last release. + (let* ((commit "e332ec93e9c90f1cbee676b022bf2c5d5b7b1239") + (revision "0") + (version (git-version "2.8.2" revision commit))) + (package + (name "shadowsocks") + (version version) + (home-page "https://github.com/shadowsocks/shadowsocks") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit commit))) + (sha256 + (base32 + "1idd9b4f2pnhcpk1bh030hqg5zq25gkwxd53xi3c0cj242w7sp2j")) + (file-name (git-file-name name version)))) + (build-system python-build-system) + (synopsis "Fast tunnel proxy that helps you bypass firewalls") + (description + "This package is a fast tunnel proxy that helps you bypass firewalls. + +Features: +@itemize +@item TCP & UDP support +@item User management API +@item TCP Fast Open +@item Workers and graceful restart +@item Destination IP blacklist +@end itemize") + (license license:asl2.0)))) |