tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
cvs: fix build with clang 16
Weijia Wang
2 years ago
4e25b296
b746e126
+4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
version-management
cvs
default.nix
+4
pkgs/applications/version-management/cvs/default.nix
···
40
"AR=${stdenv.cc.targetPrefix}ar"
41
];
42
0
0
0
0
43
doCheck = false; # fails 1 of 1 tests
44
45
meta = with lib; {
···
40
"AR=${stdenv.cc.targetPrefix}ar"
41
];
42
43
+
env = lib.optionalAttrs stdenv.cc.isClang {
44
+
NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration";
45
+
};
46
+
47
doCheck = false; # fails 1 of 1 tests
48
49
meta = with lib; {