Unverified Commit cee19170 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

Merge pull request #327730 from bbenno/graylog-5_2/update

graylog-5_2: 5.2.7 -> 5.2.9
parents 6e612e9d aabff57e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ let
  buildGraylog = callPackage ./graylog.nix {};
in buildGraylog {
  version = "5.1.13";
  sha256 = "sha256-qjNJ51EbPjtDR5h4DElpSblj/c8WarXxPfcLTuTx5AQ=";
  hash = "sha256-qjNJ51EbPjtDR5h4DElpSblj/c8WarXxPfcLTuTx5AQ=";
  maintainers = [ lib.maintainers.f2k1de ];
  license = lib.licenses.sspl;
}
+2 −2
Original line number Diff line number Diff line
@@ -2,8 +2,8 @@
let
  buildGraylog = callPackage ./graylog.nix {};
in buildGraylog {
  version = "5.2.7";
  sha256 = "sha256-so9IHX0r3dmj5wLrLtQgrcXk+hu6E8/1d7wJu1XDcVA=";
  version = "5.2.9";
  hash = "sha256-xvKFHAWUb1cqARWH57AOEdRzj5W7n0AgIUkEOBuRumo=";
  maintainers = [ lib.maintainers.f2k1de ];
  license = lib.licenses.sspl;
}
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ let
  buildGraylog = callPackage ./graylog.nix {};
in buildGraylog {
  version = "6.0.4";
  sha256 = "sha256-PU7AepIRwx7FibBkZaQUWUy3v2MeM7cS77FH28aj8I8=";
  hash = "sha256-PU7AepIRwx7FibBkZaQUWUy3v2MeM7cS77FH28aj8I8=";
  maintainers = with lib.maintainers; [ bbenno ];
  license = lib.licenses.sspl;
}
+2 −2
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, makeWrapper, openjdk11_headless, openjdk17_headless, systemd, nixosTests}:

{ version, sha256, maintainers, license }:
{ version, hash, maintainers, license }:
stdenv.mkDerivation rec {
  pname = "graylog_${lib.versions.majorMinor version}";
  inherit version;

  src = fetchurl {
    url = "https://packages.graylog2.org/releases/graylog/graylog-${version}.tgz";
    inherit sha256;
    inherit hash;
  };

  dontBuild = true;