mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
[Optimizations] Blacklist more packages
This commit is contained in:
parent
684e10adcb
commit
cca8ef17be
1 changed files with 8 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue