metricbeat: 5.2.1 -> 5.2.2, build from source

This commit is contained in:
Robin Gloster 2017-03-20 22:55:13 +01:00
parent 66d0c4b1bd
commit 4d08d1aa8f
No known key found for this signature in database
GPG key ID: 5E4C836C632C2882

View file

@ -1,33 +1,25 @@
{ stdenv, fetchurl }:
{ stdenv, fetchFromGitHub, buildGoPackage }:
stdenv.mkDerivation rec {
buildGoPackage rec {
name = "metricbeat-${version}";
version = "5.2.1";
version = "5.2.2";
src = fetchurl {
url = "https://artifacts.elastic.co/downloads/beats/metricbeat/${name}-linux-x86_64.tar.gz";
sha256 = "0shpyqgrqiiqv9anipqms1xy0wn5n2m11fvicdzr3x1v3jygm1ds";
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";
# need to patch interpreter to be able to run on NixOS
patchPhase = ''
patchelf --interpreter $(cat $NIX_CC/nix-support/dynamic-linker) metricbeat
'';
subPackages = [ "metricbeat" ];
installPhase = ''
mkdir -p $out/bin
cp metricbeat $out/bin/
'';
meta = {
meta = with stdenv.lib; {
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" ];
license = licenses.asl20;
maintainers = [ maintainers.fadenb ];
platforms = platforms.linux;
};
}