From 76b199e34be37ca7c807c6bd19872a9de0efc15b Mon Sep 17 00:00:00 2001 From: Mitchell Skaggs Date: Tue, 9 Apr 2024 17:53:35 -0500 Subject: [PATCH] electron: exclude patch of removed tests (#302544) Closes https://github.com/NixOS/nixpkgs/issues/302457 --- pkgs/development/tools/electron/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/electron/common.nix b/pkgs/development/tools/electron/common.nix index 9881c26f659e..a29de512404d 100644 --- a/pkgs/development/tools/electron/common.nix +++ b/pkgs/development/tools/electron/common.nix @@ -127,7 +127,7 @@ in (chromium.override { upstream-info = info.chromium; }).mkDerivation (base: { for patch in $(cat $patch_dir/.patches) do echo applying in $repo: $patch - git apply -p1 --directory=$repo --exclude='src/third_party/blink/web_tests/*' $patch_dir/$patch + git apply -p1 --directory=$repo --exclude='src/third_party/blink/web_tests/*' --exclude='src/content/test/data/*' $patch_dir/$patch done done )