metricbeat: init at 5.2.1

This commit is contained in:
Tristan Helmich 2017-02-26 21:37:05 +01:00 committed by Robin Gloster
parent 9dfb7e42ad
commit 9fce67264d
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "metricbeat-${version}";
version = "5.2.1";
src = fetchurl {
url = "https://artifacts.elastic.co/downloads/beats/metricbeat/${name}-linux-x86_64.tar.gz";
sha256 = "0shpyqgrqiiqv9anipqms1xy0wn5n2m11fvicdzr3x1v3jygm1ds";
};
# statically linked binary, no need to build anything
dontBuild = true;
doCheck = false;
# need to patch interpreter to be able to run on NixOS
patchPhase = ''
patchelf --interpreter $(cat $NIX_CC/nix-support/dynamic-linker) metricbeat
'';
installPhase = ''
mkdir -p $out/bin
cp metricbeat $out/bin/
'';
meta = {
description = "Lightweight shipper for metrics";
homepage = https://www.elastic.co/products/beats;
license = stdenv.lib.licenses.asl20;
maintainers = [ stdenv.lib.maintainers.fadenb ];
platforms = [ "x86_64-linux" ];
};
}

View File

@ -972,6 +972,8 @@ with pkgs;
meson = callPackage ../development/tools/build-managers/meson { };
metricbeat = callPackage ../misc/logging/metricbeat { };
mp3fs = callPackage ../tools/filesystems/mp3fs { };
mpdcron = callPackage ../tools/audio/mpdcron { };