Skip to content

Commit

Permalink
metricbeat: init at 5.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fadenb authored and globin committed Mar 20, 2017
1 parent 9dfb7e4 commit 9fce672
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/misc/logging/metricbeat/default.nix
Original file line number Diff line number Diff line change
@@ -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" ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 9fce672

Please sign in to comment.