mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
32 lines
827 B
Nix
32 lines
827 B
Nix
{ stdenv, fetchurl, makeWrapper, jre_headless }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "graylog";
|
|
version = "3.1.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://packages.graylog2.org/releases/graylog/graylog-${version}.tgz";
|
|
sha256 = "0jwfq9q10nz6fy9ac2j4fcf0liz4vj0q7jmfhy9dsa3476zccwa8";
|
|
};
|
|
|
|
dontBuild = true;
|
|
dontStrip = true;
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
makeWrapperArgs = [ "--prefix" "PATH" ":" "${jre_headless}/bin" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r {graylog.jar,lib,bin,plugin} $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 ];
|
|
};
|
|
}
|