2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake
|
2018-04-13 09:59:59 +00:00
|
|
|
, libsodium, mbedtls, libev, c-ares, pcre
|
|
|
|
, asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt
|
2016-02-19 08:25:57 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-02 21:30:01 +00:00
|
|
|
pname = "shadowsocks-libev";
|
2020-09-15 04:19:21 +00:00
|
|
|
version = "3.3.5";
|
2018-04-13 09:59:59 +00:00
|
|
|
|
|
|
|
# Git tag includes CMake build files which are much more convenient.
|
2018-10-08 11:34:47 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shadowsocks";
|
2019-04-02 21:30:01 +00:00
|
|
|
repo = pname;
|
2018-04-13 09:59:59 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2020-09-15 04:19:21 +00:00
|
|
|
sha256 = "1iqpmhxk354db1x08axg6wrdy9p9a4mz0h9351i3mf3pqd1v6fdw";
|
2018-10-08 11:34:47 +00:00
|
|
|
fetchSubmodules = true;
|
2016-02-19 08:25:57 +00:00
|
|
|
};
|
|
|
|
|
2018-04-13 09:59:59 +00:00
|
|
|
buildInputs = [ libsodium mbedtls libev c-ares pcre ];
|
2018-11-07 01:58:20 +00:00
|
|
|
nativeBuildInputs = [ cmake asciidoc xmlto docbook_xml_dtd_45
|
|
|
|
docbook_xsl libxslt ];
|
2018-04-13 09:59:59 +00:00
|
|
|
|
2018-11-07 01:58:20 +00:00
|
|
|
cmakeFlags = [ "-DWITH_STATIC=OFF" "-DCMAKE_BUILD_WITH_INSTALL_NAME_DIR=ON" ];
|
2016-02-19 08:25:57 +00:00
|
|
|
|
2019-06-26 18:32:24 +00:00
|
|
|
postInstall = ''
|
|
|
|
cp lib/* $out/lib
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-02-19 08:25:57 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/shadowsocks/shadowsocks-libev";
|
2016-06-03 10:27:27 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = [ maintainers.nfjinjing ];
|
2018-06-03 20:20:21 +00:00
|
|
|
platforms = platforms.all;
|
2016-02-19 08:25:57 +00:00
|
|
|
};
|
|
|
|
}
|