graylog-5_1: init at 5.1.4

Isa bd50b5fc 6fca6f9d

+15 -4
+2 -2
nixos/modules/services/logging/graylog.nix
··· 37 37 38 38 package = mkOption { 39 39 type = types.package; 40 - default = if versionOlder config.system.stateVersion "23.05" then pkgs.graylog-3_3 else pkgs.graylog-5_0; 41 - defaultText = literalExpression (if versionOlder config.system.stateVersion "23.05" then "pkgs.graylog-3_3" else "pkgs.graylog-5_0"); 40 + default = if versionOlder config.system.stateVersion "23.05" then pkgs.graylog-3_3 else pkgs.graylog-5_1; 41 + defaultText = literalExpression (if versionOlder config.system.stateVersion "23.05" then "pkgs.graylog-3_3" else "pkgs.graylog-5_1"); 42 42 description = lib.mdDoc "Graylog package to use."; 43 43 }; 44 44
+9
pkgs/tools/misc/graylog/5.1.nix
··· 1 + { callPackage, lib, ...}: 2 + let 3 + buildGraylog = callPackage ./graylog.nix {}; 4 + in buildGraylog { 5 + version = "5.1.4"; 6 + sha256 = "sha256-ZuzmNbc+qB6oYCnR5iAsSEQGTB+pk+ghF0/+O3BTLkA="; 7 + maintainers = [ lib.maintainers.f2k1de ]; 8 + license = lib.licenses.sspl; 9 + }
+2 -2
pkgs/tools/misc/graylog/plugins.nix
··· 1 - { lib, stdenv, fetchurl, unzip, graylog-5_0 }: 1 + { lib, stdenv, fetchurl, unzip, graylog-5_1 }: 2 2 3 3 with lib; 4 4 ··· 17 17 dontUnpack = true; 18 18 nativeBuildInputs = [ unzip ]; 19 19 meta = a.meta // { 20 - platforms = graylog-5_0.meta.platforms; 20 + platforms = graylog-5_1.meta.platforms; 21 21 maintainers = (a.meta.maintainers or []) ++ [ maintainers.fadenb ]; 22 22 sourceProvenance = with sourceTypes; [ binaryBytecode ]; 23 23 };
+2
pkgs/top-level/all-packages.nix
··· 8622 8622 8623 8623 graylog-5_0 = callPackage ../tools/misc/graylog/5.0.nix { }; 8624 8624 8625 + graylog-5_1 = callPackage ../tools/misc/graylog/5.1.nix { }; 8626 + 8625 8627 graylogPlugins = recurseIntoAttrs ( 8626 8628 callPackage ../tools/misc/graylog/plugins.nix { } 8627 8629 );