60e4907256
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/graylog/versions. These checks were done: - built on NixOS - /nix/store/957p5ly7vbcn5rbzcsqz1fhwih4avkzh-graylog-2.4.5/bin/graylogctl passed the binary check. - /nix/store/957p5ly7vbcn5rbzcsqz1fhwih4avkzh-graylog-2.4.5/bin/.graylogctl-wrapped passed the binary check. - 2 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 2.4.5 with grep in /nix/store/957p5ly7vbcn5rbzcsqz1fhwih4avkzh-graylog-2.4.5 - directory tree listing: https://gist.github.com/b91cd0e75ee5014ab3b6ef789d72127d - du listing: https://gist.github.com/36db46a4bf59057799ab10aa9dca0f9b
32 lines
842 B
Nix
32 lines
842 B
Nix
{ stdenv, fetchurl, makeWrapper, jre_headless }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.4.5";
|
|
name = "graylog-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://packages.graylog2.org/releases/graylog/graylog-${version}.tgz";
|
|
sha256 = "0yb8r7f64s1m83dqw64yakxmlyn7d3kdi2rd9mpw3rnz4kqcarly";
|
|
};
|
|
|
|
dontBuild = true;
|
|
dontStrip = true;
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
makeWrapperArgs = [ "--prefix" "PATH" ":" "${jre_headless}/bin" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r {graylog.jar,lib,bin,plugin,data} $out
|
|
wrapProgram $out/bin/graylogctl $makeWrapperArgs
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Open source log management solution";
|
|
homepage = https://www.graylog.org/;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.fadenb ];
|
|
};
|
|
}
|