From 4bc528ce280d3a2e65ee3937949f4b8793928615 Mon Sep 17 00:00:00 2001 From: Jinjing Wang Date: Fri, 3 Jun 2016 18:27:27 +0800 Subject: shadowsocks-libev: 2.4.6 -> 2.4.7 --- .../tools/networking/shadowsocks-libev/default.nix | 27 ++++++++++++++-------- 1 file changed, 17 insertions(+), 10 deletions(-) (limited to 'pkgs/tools/networking/shadowsocks-libev') diff --git a/pkgs/tools/networking/shadowsocks-libev/default.nix b/pkgs/tools/networking/shadowsocks-libev/default.nix index 25068f8916be..e12d25930210 100644 --- a/pkgs/tools/networking/shadowsocks-libev/default.nix +++ b/pkgs/tools/networking/shadowsocks-libev/default.nix @@ -1,18 +1,23 @@ { withPolarSSL ? false +, enableSystemSharedLib ? true , stdenv, fetchurl, zlib , openssl ? null , polarssl ? null +, libev ? null +, libsodium ? null +, udns ? null }: let - version = "2.4.6"; - sha256 = "c87781bc280d7a7180cf82b17ad4e8f38242c73431d5b4b6cd4ccd0c29e1fe93"; + version = "2.4.7"; + sha256 = "957265cc5339e020d8c8bb7414ab14936e3939dc7355f334aec896ec9b03c6ed"; in +with stdenv.lib; + stdenv.mkDerivation rec { - inherit version; name = "shadowsocks-libev-${version}"; src = fetchurl { url = "https://github.com/shadowsocks/shadowsocks-libev/archive/v${version}.tar.gz"; @@ -20,13 +25,15 @@ stdenv.mkDerivation rec { }; buildInputs = [ zlib ] - ++ stdenv.lib.optional (!withPolarSSL) openssl - ++ stdenv.lib.optional withPolarSSL polarssl; + ++ optional (!withPolarSSL) openssl + ++ optional withPolarSSL polarssl + ++ optional enableSystemSharedLib [libev libsodium udns]; - configureFlags = stdenv.lib.optional (withPolarSSL) + configureFlags = optional withPolarSSL [ "--with-crypto-library=polarssl" "--with-polarssl=${polarssl}" - ]; + ] + ++ optional enableSystemSharedLib "--enable-system-shared-lib"; meta = { description = "A lightweight secured SOCKS5 proxy"; @@ -35,8 +42,8 @@ stdenv.mkDerivation rec { 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; + license = licenses.gpl3Plus; + maintainers = [ maintainers.nfjinjing ]; + platforms = platforms.all; }; } -- cgit 1.4.1