Skip to content

Commit

Permalink
electron_29-bin: mark as insecure because it's EOL
Browse files Browse the repository at this point in the history
(cherry picked from commit 39f4f08)
  • Loading branch information
emilylange authored and emilazy committed Aug 27, 2024
1 parent 7a11d76 commit ed329fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/tools/electron/binary/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ 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 "29.0.0") "Electron version ${version} is EOL";
# https://www.electronjs.org/docs/latest/tutorial/electron-timelines
knownVulnerabilities = optional (versionOlder version "30.0.0") "Electron version ${version} is EOL";
};

fetcher = vers: tag: hash: fetchurl {
Expand Down

0 comments on commit ed329fb

Please sign in to comment.