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
40
"AR=${stdenv.cc.targetPrefix}ar"
41
41
];
42
42
43
43
+
env = lib.optionalAttrs stdenv.cc.isClang {
44
44
+
NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration";
45
45
+
};
46
46
+
43
47
doCheck = false; # fails 1 of 1 tests
44
48
45
49
meta = with lib; {