libmysofa: disable CODE_COVERAGE in build

Leaving it on generates huge amounts of stderr spam from anything that
links it (such as ffmpeg) as it tries (and fails) to create profiling
records in /build.
This commit is contained in:
B. Kelly 2020-08-06 08:36:55 -04:00 committed by B. Kelly
parent 7dce0fff9c
commit 0834620bef

View File

@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib ];
cmakeFlags = [ "-DBUILD_TESTS=OFF" ];
cmakeFlags = [ "-DBUILD_TESTS=OFF" "-DCODE_COVERAGE=OFF" ];
meta = with stdenv.lib; {
description = "Reader for AES SOFA files to get better HRTFs";