Unverified Commit d7cfd8c0 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Merge #319252: electron*: mark older versions as EOL

parents 7d270d53 78926383
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,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 "27.0.0") "Electron version ${version} is EOL";
    knownVulnerabilities = optional (versionOlder version "29.0.0") "Electron version ${version} is EOL";
  };

  fetcher = vers: tag: hash: fetchurl {
+1 −0
Original line number Diff line number Diff line
@@ -234,6 +234,7 @@ in (chromium.override { upstream-info = info.chromium; }).mkDerivation (base: {
  meta = with lib; {
    description = "Cross platform desktop application shell";
    homepage = "https://github.com/electron/electron";
    knownVulnerabilities = optional (versionOlder info.version "29") "Electron version ${version} is EOL";
    platforms = lib.platforms.linux;
    license = licenses.mit;
    maintainers = with maintainers; [ yayayayaka teutat3s ];