From ec8ccb1f428a192d2bcfed1eb048a40cd1060a70 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 27 Oct 2021 13:21:49 +0200 Subject: [PATCH] electron: mark versions <= 11 as EOL --- pkgs/development/tools/electron/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/electron/generic.nix b/pkgs/development/tools/electron/generic.nix index def103f6e567..cbbceba70248 100644 --- a/pkgs/development/tools/electron/generic.nix +++ b/pkgs/development/tools/electron/generic.nix @@ -28,7 +28,7 @@ let maintainers = with maintainers; [ travisbhartwell manveru prusnak ]; platforms = [ "x86_64-darwin" "x86_64-linux" "i686-linux" "armv7l-linux" "aarch64-linux" ] ++ optionals (versionAtLeast version "11.0.0") [ "aarch64-darwin" ]; - knownVulnerabilities = optional (versionOlder version "6.0.0") "Electron version ${version} is EOL"; + knownVulnerabilities = optional (versionOlder version "12.0.0") "Electron version ${version} is EOL"; }; fetcher = vers: tag: hash: fetchurl {