mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
28 lines
659 B
Nix
28 lines
659 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.4.0";
|
|
name = "graylog-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://packages.graylog2.org/releases/graylog/graylog-${version}.tgz";
|
|
sha256 = "12ipp1bji0ss0d20dpqx8d6x3p3h38qdfdy98qy37mjy0fi22vpq";
|
|
};
|
|
|
|
dontBuild = true;
|
|
dontStrip = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r {graylog.jar,lib,bin,plugin,data} $out
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Open source log management solution";
|
|
homepage = https://www.graylog.org/;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.fadenb ];
|
|
};
|
|
}
|