From 875e26cb55d8a7967bf4fc0f0647fd6491d2c45a Mon Sep 17 00:00:00 2001 From: teutat3s <10206665+teutat3s@users.noreply.github.com> Date: Fri, 12 Sep 2025 18:21:56 +0200 Subject: [PATCH] electron_35-bin: mark as insecure because it's EOL https://github.com/electron/electron/blob/dae5dad16799769e1cad1bbd0893dd1f3d3f3382/docs/tutorial/electron-timelines.md (cherry picked from commit b67464cfb67bc88be9a8b627b1f0ab22618746fa) --- pkgs/development/tools/electron/binary/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/electron/binary/generic.nix b/pkgs/development/tools/electron/binary/generic.nix index 8bd49c6ed39c..7de6c458757f 100644 --- a/pkgs/development/tools/electron/binary/generic.nix +++ b/pkgs/development/tools/electron/binary/generic.nix @@ -58,7 +58,7 @@ let ]; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; # https://www.electronjs.org/docs/latest/tutorial/electron-timelines - knownVulnerabilities = optional (versionOlder version "35.0.0") "Electron version ${version} is EOL"; + knownVulnerabilities = optional (versionOlder version "36.0.0") "Electron version ${version} is EOL"; }; fetcher =