Unverified Commit d5c292af authored by K900's avatar K900 Committed by GitHub
Browse files

Merge pull request #197524 from f2k1de/graylog4

graylog: init at 4.0.8, 4.3.9, 5.0.2
parents d925734d c7629a78
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -4957,6 +4957,12 @@
    githubId = 25955146;
    name = "eyJhb";
  };
  f2k1de = {
    name = "f2k1de";
    email = "hi@f2k1.de";
    github = "f2k1de";
    githubId = 11199213;
  };
  f4814n = {
    email = "me@f4814n.de";
    github = "f4814";
+2 −0
Original line number Diff line number Diff line
@@ -182,6 +182,8 @@ In addition to numerous new and upgraded packages, this release has the followin

- `git-bug` has been updated to at least version 0.8.0, which includes backwards incompatible changes. The `git-bug-migration` package can be used to upgrade existing repositories.

- `graylog` has been updated to version 5, which can not be upgraded directly from the previously packaged version 3.3. If you had installed the previously packaged version 3.3, please follow the [upgrade path](https://go2docs.graylog.org/5-0/upgrading_graylog/upgrade_path.htm) from 3.3 to 4.0 to 4.3 to 5.0.

- `nushell` has been updated to at least version 0.77.0, which includes potential breaking changes in aliases. The old aliases are now available as `old-alias` but it is recommended you migrate to the new format. See [Reworked aliases](https://www.nushell.sh/blog/2023-03-14-nushell_0_77.html#reworked-aliases-breaking-changes-kubouch).

- `keepassx` and `keepassx2` have been removed, due to upstream [stopping development](https://www.keepassx.org/index.html%3Fp=636.html). Consider [KeePassXC](https://keepassxc.org) as a maintained alternative.
+2 −2
Original line number Diff line number Diff line
@@ -37,8 +37,8 @@ in

      package = mkOption {
        type = types.package;
        default = pkgs.graylog;
        defaultText = literalExpression "pkgs.graylog";
        default = if versionOlder config.system.stateVersion "23.05" then pkgs.graylog-3_3 else pkgs.graylog-5_0;
        defaultText = literalExpression (if versionOlder config.system.stateVersion "23.05" then "pkgs.graylog-3_3" else "pkgs.graylog-5_0");
        description = lib.mdDoc "Graylog package to use.";
      };

+9 −0
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;
}
+9 −0
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;
}
Loading