cvs: fix build with clang 16

This commit is contained in:
Weijia Wang 2023-11-04 18:12:10 +01:00
parent b746e1269b
commit 4e25b2965c

View file

@ -40,6 +40,10 @@ stdenv.mkDerivation rec {
"AR=${stdenv.cc.targetPrefix}ar"
];
env = lib.optionalAttrs stdenv.cc.isClang {
NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration";
};
doCheck = false; # fails 1 of 1 tests
meta = with lib; {