commit
9c74e20bb2
3 changed files with 12 additions and 7 deletions
|
@ -479,6 +479,11 @@
|
|||
been removed.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<literal>graylog</literal> has been upgraded from version 2.* to 3.*. Some setups making use of extraConfig (especially those exposing Graylog via reverse proxies) need to be updated as upstream removed/replaced some settings. See <link xlink:href="http://docs.graylog.org/en/3.0/pages/upgrade/graylog-3.0.html#simplified-http-interface-configuration">Upgrading Graylog</link> for details.
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</section>
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{ stdenv, fetchurl, makeWrapper, jre_headless }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2.5.1";
|
||||
version = "3.0.0";
|
||||
name = "graylog-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://packages.graylog2.org/releases/graylog/graylog-${version}.tgz";
|
||||
sha256 = "1n7s6j36rs4dj27fz5n7gvxagx6w4lhi1z2xhryc41pz77mjrnkb";
|
||||
sha256 = "1jcc254z4xqybm1f5r0g4dfyd9ji0z5g45hcnds32w9h8zqk391k";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
cp -r {graylog.jar,lib,bin,plugin,data} $out
|
||||
cp -r {graylog.jar,lib,bin,plugin} $out
|
||||
wrapProgram $out/bin/graylogctl $makeWrapperArgs
|
||||
'';
|
||||
|
||||
|
|
|
@ -25,10 +25,10 @@ in {
|
|||
aggregates = glPlugin rec {
|
||||
name = "graylog-aggregates-${version}";
|
||||
pluginName = "graylog-plugin-aggregates";
|
||||
version = "2.3.0";
|
||||
version = "2.4.0";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/cvtienhoven/${pluginName}/releases/download/${version}/${pluginName}-${version}.jar";
|
||||
sha256 = "0yy455wyr01ci3nqvbhzxs6r4bb3xgac0xcmqaim1wsm1fdfi2ws";
|
||||
sha256 = "1c48almnjr0b6nvzagnb9yddqbcjs7yhrd5yc5fx9q7w3vxi50zp";
|
||||
};
|
||||
meta = {
|
||||
homepage = https://github.com/cvtienhoven/graylog-plugin-aggregates;
|
||||
|
@ -38,10 +38,10 @@ in {
|
|||
auth_sso = glPlugin rec {
|
||||
name = "graylog-auth-sso-${version}";
|
||||
pluginName = "graylog-plugin-auth-sso";
|
||||
version = "2.4.2";
|
||||
version = "3.0.0";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Graylog2/${pluginName}/releases/download/${version}/${pluginName}-${version}.jar";
|
||||
sha256 = "0nwzw7ddq2psnvj8jwaxp9i080l7y2daxy198wzb62m7i1srzcp8";
|
||||
sha256 = "09y1s71mk8fm6lsghla7mrh9z5y230r8zpv84klhavh2dacs8gq5";
|
||||
};
|
||||
meta = {
|
||||
homepage = https://github.com/Graylog2/graylog-plugin-auth-sso;
|
||||
|
|
Loading…
Reference in a new issue