about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYureka <yuka@yuka.dev>2024-03-13 19:26:15 +0100
committerYureka <yuka@yuka.dev>2024-03-14 12:29:00 +0100
commitc076cc21571c0572715a6ddbd794558f0578878d (patch)
treeb386d7c3eb21499359c87cb38cf8c21eba33bdfe
parent044c4aa3c3d50cc63d0d45798a63adb0ca2a196c (diff)
downloadnixlib-c076cc21571c0572715a6ddbd794558f0578878d.tar
nixlib-c076cc21571c0572715a6ddbd794558f0578878d.tar.gz
nixlib-c076cc21571c0572715a6ddbd794558f0578878d.tar.bz2
nixlib-c076cc21571c0572715a6ddbd794558f0578878d.tar.lz
nixlib-c076cc21571c0572715a6ddbd794558f0578878d.tar.xz
nixlib-c076cc21571c0572715a6ddbd794558f0578878d.tar.zst
nixlib-c076cc21571c0572715a6ddbd794558f0578878d.zip
electron_26-bin: mark as insecure
-rw-r--r--pkgs/development/tools/electron/binary/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/electron/binary/generic.nix b/pkgs/development/tools/electron/binary/generic.nix
index daa0c81d2e05..58b3154a2941 100644
--- a/pkgs/development/tools/electron/binary/generic.nix
+++ b/pkgs/development/tools/electron/binary/generic.nix
@@ -41,7 +41,7 @@ let
       ++ optionals (versionAtLeast version "11.0.0") [ "aarch64-darwin" ]
       ++ optionals (versionOlder version "19.0.0") [ "i686-linux" ];
     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
-    knownVulnerabilities = optional (versionOlder version "26.0.0") "Electron version ${version} is EOL";
+    knownVulnerabilities = optional (versionOlder version "27.0.0") "Electron version ${version} is EOL";
   };
 
   fetcher = vers: tag: hash: fetchurl {