Commit efbcbc56 authored by Isa's avatar Isa
Browse files

graylog: init at 4.0.8, 4.3.8, 5.0.6

parent 4a5817c4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -143,6 +143,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.
+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;
}
+9 −0
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;
}
+9 −0
Original line number Diff line number Diff line
{ callPackage, lib, ...}:
let
  buildGraylog = callPackage ./graylog.nix {};
in buildGraylog {
  version = "5.0.6";
  sha256 = "sha256-GOxiGx2BU4x4A9W0k94gqXlhRwoixm0WK0UZN+LXkyQ=";
  maintainers = [ lib.maintainers.f2k1de ];
  license = lib.licenses.sspl;
}
Loading