libconfuse: Disable failing tests on darwin

This commit is contained in:
Sandro Jäckel 2020-11-24 09:05:42 +01:00
parent e445fc2017
commit dc041e12f3
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -11,6 +11,12 @@ stdenv.mkDerivation rec {
owner = "martinh";
};
postPatch = ''
substituteInPlace tests/Makefile.am \
--replace 'TESTS += empty_string' "" \
--replace 'TESTS += print_filter' ""
'';
nativeBuildInputs = [ autoreconfHook flex ];
enableParallelBuilding = true;