nixpkgs/pkgs/tools/networking/shadowsocks-libev/default.nix

41 lines
1.3 KiB
Nix
Raw Normal View History

2018-04-13 09:59:59 +00:00
{ stdenv, fetchurl, fetchgit, cmake
, 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 {
name = "shadowsocks-libev-${version}";
version = "3.2.0";
2018-04-13 09:59:59 +00:00
# Git tag includes CMake build files which are much more convenient.
# fetchgit because submodules.
src = fetchgit {
url = "https://github.com/shadowsocks/shadowsocks-libev";
rev = "refs/tags/v${version}";
sha256 = "0i9vz5b2c2bkdl2k9kqzvqyrlpdl94lf7k7rzxds8hn2kk0jizhb";
2016-02-19 08:25:57 +00:00
};
2018-04-13 09:59:59 +00:00
buildInputs = [ libsodium mbedtls libev c-ares pcre ];
nativeBuildInputs = [ cmake asciidoc xmlto docbook_xml_dtd_45 docbook_xsl libxslt ];
cmakeFlags = [ "-DWITH_STATIC=OFF" ];
2016-02-19 08:25:57 +00:00
2018-04-13 09:59:59 +00:00
postInstall = ''
cp lib/* $out/lib
chmod +x $out/bin/*
mv $out/pkgconfig $out/lib
'';
2016-02-19 08:25:57 +00:00
2018-04-13 09:59:59 +00:00
meta = with stdenv.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.
'';
homepage = https://github.com/shadowsocks/shadowsocks-libev;
2016-06-03 10:27:27 +00:00
license = licenses.gpl3Plus;
maintainers = [ maintainers.nfjinjing ];
2018-04-13 09:59:59 +00:00
platforms = platforms.linux;
2016-02-19 08:25:57 +00:00
};
}