nixpkgs/pkgs/tools/misc/logstash/default.nix

32 lines
908 B
Nix
Raw Normal View History

2014-07-11 16:50:02 +00:00
{ stdenv, fetchurl }:
2014-07-11 16:50:02 +00:00
stdenv.mkDerivation rec {
2015-08-19 21:09:03 +00:00
version = "1.5.3";
2014-07-11 16:50:02 +00:00
name = "logstash-${version}";
2014-07-11 16:50:02 +00:00
src = fetchurl {
url = "https://download.elasticsearch.org/logstash/logstash/logstash-${version}.tar.gz";
2015-08-19 21:09:03 +00:00
sha256 = "1an476k4q2shdxvhcx4fzbrcpk6isjrrvzlb6ivxfqg5fih3cg7b";
2014-07-11 16:50:02 +00:00
};
2015-08-19 21:09:03 +00:00
dontBuild = true;
dontPatchELF = true;
dontStrip = true;
dontPatchShebangs = true;
2014-07-11 16:50:02 +00:00
installPhase = ''
mkdir -p $out
cp -r {Gemfile*,vendor,lib} $out
cp bin/logstash $out/logstash
cp bin/plugin $out/logstash-plugin
2014-07-11 16:50:02 +00:00
'';
meta = with stdenv.lib; {
description = "Logstash is a data pipeline that helps you process logs and other event data from a variety of systems.";
homepage = https://www.elastic.co/products/logstash;
license = licenses.asl20;
platforms = platforms.unix;
maintainers = [ maintainers.wjlroe maintainers.offline ];
2014-07-11 16:50:02 +00:00
};
}