summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2022-01-15 12:26:48 +0100
committerGitHub <noreply@github.com>2022-01-15 12:26:48 +0100
commit741f4a776927f2db571c7ce896728991ac0a4685 (patch)
treeed901c94f76429258a7f2572ce145abe46395056 /pkgs/development
parentba8ec8bf860a0afa3c001025b046e4fe5232a339 (diff)
parent79e607c35195d45ea766450831b6f954099c30d5 (diff)
downloadnixpkgs-741f4a776927f2db571c7ce896728991ac0a4685.tar
nixpkgs-741f4a776927f2db571c7ce896728991ac0a4685.tar.gz
nixpkgs-741f4a776927f2db571c7ce896728991ac0a4685.tar.bz2
nixpkgs-741f4a776927f2db571c7ce896728991ac0a4685.tar.lz
nixpkgs-741f4a776927f2db571c7ce896728991ac0a4685.tar.xz
nixpkgs-741f4a776927f2db571c7ce896728991ac0a4685.tar.zst
nixpkgs-741f4a776927f2db571c7ce896728991ac0a4685.zip
Merge pull request #155072 from brandonweeks/electron
electron: mark versions <= 12 as EOL
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/electron/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/electron/generic.nix b/pkgs/development/tools/electron/generic.nix
index cbbceba7024..f70767a0591 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 "12.0.0") "Electron version ${version} is EOL";
+    knownVulnerabilities = optional (versionOlder version "13.0.0") "Electron version ${version} is EOL";
   };
 
   fetcher = vers: tag: hash: fetchurl {