retic: only kill checkPhase on llvm for now

This commit is contained in:
Aaron Bieber 2024-10-02 07:03:57 -06:00
parent f1e6832748
commit 82adf5e58d
No known key found for this signature in database

View File

@ -2,6 +2,13 @@
, ...
}:
let
checkKillAll = p: (_: super: {
"${p}" = super."${p}".overrideAttrs (_: {
doCheck = false;
doInstallCheck = false;
checkPhase = "";
});
});
checkKill = p: (_: super: {
"${p}" = super."${p}".overrideAttrs (_: {
doCheck = false;
@ -19,7 +26,7 @@ in
nixpkgs.overlays = [
(checkKill "boehmgc")
(checkKill "libuv")
(checkKill "llvm")
(checkKillAll "llvm")
(checkKill "elfutils")
];