ucommon: disable flaky networking test

This commit is contained in:
Robin Gloster 2016-08-29 01:31:47 +00:00
parent 306cd03cdb
commit beff32f61e
No known key found for this signature in database
GPG key ID: 5E4C836C632C2882

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 ];