cvs: fix build with clang 16
This commit is contained in:
parent
b746e1269b
commit
4e25b2965c
1 changed files with 4 additions and 0 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue