mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
graylog: init at 2.0.0
This commit is contained in:
parent
89ce5d4b96
commit
49b947635f
27
pkgs/tools/misc/graylog/default.nix
Normal file
27
pkgs/tools/misc/graylog/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "2.0.0";
|
||||||
|
name = "graylog-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://packages.graylog2.org/releases/graylog/graylog-${version}.tgz";
|
||||||
|
sha256 = "0qn2rf2aarfr34387fiv34rmav20c66b4zs9bkm8gpvj0laxrqh2";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1751,6 +1751,8 @@ in
|
|||||||
|
|
||||||
grails = callPackage ../development/web/grails { jdk = null; };
|
grails = callPackage ../development/web/grails { jdk = null; };
|
||||||
|
|
||||||
|
graylog = callPackage ../tools/misc/graylog { };
|
||||||
|
|
||||||
gprof2dot = callPackage ../development/tools/profiling/gprof2dot {
|
gprof2dot = callPackage ../development/tools/profiling/gprof2dot {
|
||||||
# Using pypy provides significant performance improvements (~2x)
|
# Using pypy provides significant performance improvements (~2x)
|
||||||
pythonPackages = pypyPackages;
|
pythonPackages = pypyPackages;
|
||||||
|
Loading…
Reference in New Issue
Block a user