[Optimizations] Blacklist more packages

This commit is contained in:
Antoine Viallon 2023-03-15 09:28:47 +01:00
parent 684e10adcb
commit cca8ef17be
Signed by: aviallon
GPG key ID: 186FC35EDEB25716

View file

@ -117,7 +117,14 @@ in
};
trace = mkEnableOption "trace attributes in overriden derivations";
blacklist = mkOption {
default = [ "cmocka" "libkrb5" "libidn2" "tpm2-tss" "libxcrypt" ];
default = [ # Broken
"cmocka" "libkrb5" "libidn2" "tpm2-tss" "libxcrypt"
"libomxil-bellagio" "wayland" "wayland-protocols"
"openssl" "libXt"
# Very slow
"llvm" "clang" "clang-wrapper" "valgrind" "rustc"
];
example = [ "bash" ];
description = "Blacklist specific packages from optimizations";
type = types.listOf types.str;