ucommon: disable flaky networking test

This commit is contained in:
Robin Gloster
2016-08-29 01:31:47 +00:00
parent 306cd03cdb
commit beff32f61e

View File

@@ -19,6 +19,12 @@ stdenv.mkDerivation rec {
buildInputs = [ pkgconfig ];
# disable flaky networking test
postPatch = ''
substituteInPlace test/stream.cpp \
--replace 'ifndef UCOMMON_SYSRUNTIME' 'if 0'
'';
# ucommon.pc has link time depdendencies on -lssl, -lcrypto, -lz, -lgnutls
propagatedBuildInputs = [ openssl zlib gnutls ];