summary refs log tree commit diff
path: root/pkgs/tools/networking/shadowsocks-libev/default.nix
blob: e49f2e5dd63ae4d83a1df0fc87b98bf14732aaa5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ withPolarSSL ? false
, stdenv, fetchurl, zlib
, openssl ? null
, polarssl ? null
}:

let

  version = "2.4.5";
  sha256 = "08bf7f240ee39fa700aac636ca84b65f2f0cfbcfa63a0783afb05872940067e2";

in

stdenv.mkDerivation rec {
  inherit version;
  name = "shadowsocks-libev-${version}";
  src = fetchurl {
    url = "https://github.com/shadowsocks/shadowsocks-libev/archive/v${version}.tar.gz";
    inherit sha256;
  };

  buildInputs = [ zlib ]
                ++ stdenv.lib.optional (!withPolarSSL) openssl
                ++ stdenv.lib.optional withPolarSSL polarssl;

  configureFlags = stdenv.lib.optional (withPolarSSL)
                     [ "--with-crypto-library=polarssl"
                       "--with-polarssl=${polarssl}"
                     ];

  meta = {
    description = "A lightweight secured SOCKS5 proxy";
    longDescription = ''
      Shadowsocks-libev is a lightweight secured SOCKS5 proxy for embedded devices and low-end boxes.
      It is a port of Shadowsocks created by @clowwindy, which is maintained by @madeye and @linusyang.
    '';
    homepage = https://github.com/shadowsocks/shadowsocks-libev;
    license = stdenv.lib.licenses.gpl3Plus;
    maintainers = [ stdenv.lib.maintainers.nfjinjing ];
    platforms = stdenv.lib.platforms.all;
  };
}