Unverified Commit 0891a909 authored by Ryan Lahfa's avatar Ryan Lahfa Committed by GitHub
Browse files

Merge pull request #259884 from RaitoBezarius/drop-graylog-eol

parents 72bd71a4 e60282e1
Loading
Loading
Loading
Loading

pkgs/tools/misc/graylog/3.3.nix

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
{ callPackage, lib }:
let
  buildGraylog = callPackage ./graylog.nix {};
in buildGraylog {
  version = "3.3.16";
  sha256 = "sha256-P/cnfYKnMSnDD4otEyirKlLaFduyfSO9sao4BY3c3Z4=";
  maintainers = [ lib.maintainers.fadenb ];
  license = lib.licenses.gpl3;
}

pkgs/tools/misc/graylog/4.0.nix

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
{ callPackage, lib, ...}:
let
  buildGraylog = callPackage ./graylog.nix {};
in buildGraylog {
  version = "4.0.8";
  sha256 = "sha256-1JlJNJSU1wJiztLhYD87YM/7p3YCBXBKerEo/xfumUg=";
  maintainers = [ lib.maintainers.f2k1de ];
  license = lib.licenses.sspl;
}

pkgs/tools/misc/graylog/4.3.nix

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
{ callPackage, lib, ...}:
let
  buildGraylog = callPackage ./graylog.nix {};
in buildGraylog {
  version = "4.3.9";
  sha256 = "sha256-BMw6U47LQQFFVM34rgadMetpYTtj6R3E+uU0dtTcH64=";
  maintainers = [ lib.maintainers.f2k1de ];
  license = lib.licenses.sspl;
}
+3 −0
Original line number Diff line number Diff line
@@ -328,6 +328,9 @@ mapAliases ({
  gradle_5 = throw "gradle_5 has been removed because it's no longer being updated"; # Added 2023-01-17
  gr-ais = throw "'gr-ais' has been renamed to/replaced by 'gnuradio3_7.pkgs.ais'"; # Converted to throw 2023-09-10
  graylog = throw "graylog is now available in versions 3.3 up to 5.0. Please mind the upgrade path and choose the appropriate version. Direct upgrading from 3.3 to 4.3 or above is not supported"; # Added 2023-04-24
  graylog-3_3 = throw "graylog 3.x is EOL. Please consider downgrading nixpkgs if you need an upgrade from 3.x to latest series."; # Added 2023-10-09
  graylog-4_0 = throw "graylog 4.x is EOL. Please consider downgrading nixpkgs if you need an upgrade from 4.x to latest series."; # Added 2023-10-09
  graylog-4_3 = throw "graylog 4.x is EOL. Please consider downgrading nixpkgs if you need an upgrade from 4.x to latest series."; # Added 2023-10-09
  gr-gsm = throw "'gr-gsm' has been renamed to/replaced by 'gnuradio3_7.pkgs.gsm'"; # Converted to throw 2023-09-10
  gringo = clingo; # added 2022-11-27
  gr-limesdr = throw "'gr-limesdr' has been renamed to/replaced by 'gnuradio3_7.pkgs.limesdr'"; # Converted to throw 2023-09-10
+0 −6
Original line number Diff line number Diff line
@@ -8849,12 +8849,6 @@ with pkgs;
  grails = callPackage ../development/web/grails { jdk = null; };
  graylog-3_3 = callPackage ../tools/misc/graylog/3.3.nix { };
  graylog-4_0 = callPackage ../tools/misc/graylog/4.0.nix { };
  graylog-4_3 = callPackage ../tools/misc/graylog/4.3.nix { };
  graylog-5_0 = callPackage ../tools/misc/graylog/5.0.nix { };
  graylog-5_1 = callPackage ../tools/misc/graylog/5.1.nix { };