Skip to content

Commit

Permalink
heartbeat: 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 1c3308e commit 9dfb7e4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/misc/logging/heartbeat/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "heartbeat-${version}";
version = "5.2.1";

src = fetchurl {
url = "https://artifacts.elastic.co/downloads/beats/heartbeat/${name}-linux-x86_64.tar.gz";
sha256 = "1sq3va0kbpqsjbd0bnziv2hwnp6nc2vk32hc9drjk7bhcxkp440l";
};

# statically linked binary, no need to build anything
dontBuild = true;
doCheck = false;

installPhase = ''
mkdir -p $out/bin
cp heartbeat $out/bin/
'';

meta = {
description = "Lightweight shipper for uptime monitoring";
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 @@ -944,6 +944,8 @@ with pkgs;

gti = callPackage ../tools/misc/gti { };

heartbeat = callPackage ../misc/logging/heartbeat { };

heatseeker = callPackage ../tools/misc/heatseeker { };

hexio = callPackage ../development/tools/hexio { };
Expand Down

0 comments on commit 9dfb7e4

Please sign in to comment.