tengine: 2.3.1 -> 2.3.2 (#70574)

* tengine: 2.3.1 -> 2.3.2

Changelog: https://github.com/alibaba/tengine/releases/tag/2.3.2

* tengine: unbreak
This commit is contained in:
Mario Rodas 2019-10-15 15:00:09 -05:00 committed by Renaud
parent 1d651d1340
commit 86df0e335c

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, openssl, zlib, pcre, libxml2, libxslt
{ stdenv, fetchFromGitHub, openssl, zlib, pcre, libxml2, libxslt
, gd, geoip, gperftools, jemalloc
, withDebug ? false
, withMail ? false
@ -10,12 +10,14 @@
with stdenv.lib;
stdenv.mkDerivation rec {
version = "2.3.1";
version = "2.3.2";
pname = "tengine";
src = fetchurl {
url = "https://github.com/alibaba/tengine/archive/${version}.tar.gz";
sha256 = "075blm2d62a0bdixc3vngrxpgr7ngl1s4y8hm20pbvc07f0kzn9x";
src = fetchFromGitHub {
owner = "alibaba";
repo = pname;
rev = version;
sha256 = "04xfnbc0qlk8vi6bb8sl38nxnx9naxh550xsgrb4hql6jdi0wv7l";
};
buildInputs =
@ -84,6 +86,7 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = [
"-I${libxml2.dev}/include/libxml2"
"-Wno-error=implicit-fallthrough"
] ++ optional stdenv.isDarwin "-Wno-error=deprecated-declarations";
preConfigure = (concatMapStringsSep "\n" (mod: mod.preConfigure or "") modules);
@ -102,6 +105,5 @@ stdenv.mkDerivation rec {
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ izorkin ];
broken = true;
};
}