Skip to content

Commit

Permalink
heartbeat: 5.2.1 -> 5.2.2, build from source
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Mar 20, 2017
1 parent a0d087b commit 66d0c4b
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions pkgs/misc/logging/heartbeat/default.nix
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
{ stdenv, fetchurl }:
{ stdenv, fetchFromGitHub, buildGoPackage }:

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

src = fetchurl {
url = "https://artifacts.elastic.co/downloads/beats/heartbeat/${name}-linux-x86_64.tar.gz";
sha256 = "1sq3va0kbpqsjbd0bnziv2hwnp6nc2vk32hc9drjk7bhcxkp440l";
src = fetchFromGitHub {
owner = "elastic";
repo = "beats";
rev = "v${version}";
sha256 = "19hkq19xpi3c9y5g1yq77sm2d5vzybn6mxxf0s5l6sw4l98aak5q";
};

# statically linked binary, no need to build anything
dontBuild = true;
doCheck = false;
goPackagePath = "github.com/elastic/beats";

installPhase = ''
mkdir -p $out/bin
cp heartbeat $out/bin/
'';
subPackages = [ "heartbeat" ];

meta = {
meta = with stdenv.lib; {
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" ];
license = licenses.asl20;
maintainers = [ maintainers.fadenb ];
platforms = platforms.linux;
};
}

0 comments on commit 66d0c4b

Please sign in to comment.