From cca8ef17bebab65eaa34ded504f3e436baf2aa3d Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Wed, 15 Mar 2023 09:28:47 +0100 Subject: [PATCH] [Optimizations] Blacklist more packages --- optimizations.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/optimizations.nix b/optimizations.nix index dbfa8ef..b5efac5 100644 --- a/optimizations.nix +++ b/optimizations.nix @@ -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;