nixpkgs/pkgs/servers/monitoring/prometheus/alertmanager.nix
2017-08-27 02:33:34 +02:00

49 lines
1.3 KiB
Nix

{ stdenv, go, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "alertmanager-${version}";
version = "0.8.0";
rev = "v${version}";
goPackagePath = "github.com/prometheus/alertmanager";
src = fetchFromGitHub {
inherit rev;
owner = "prometheus";
repo = "alertmanager";
sha256 = "0bqc58j0nrq7y8nbd927z7x74m8mcd2782cxkqwscpq6d9983qql";
};
# Tests exist, but seem to clash with the firewall.
doCheck = false;
buildFlagsArray = let t = "${goPackagePath}/version"; in ''
-ldflags=
-X ${t}.Version=${version}
-X ${t}.Revision=unknown
-X ${t}.Branch=unknown
-X ${t}.BuildUser=nix@nixpkgs
-X ${t}.BuildDate=unknown
-X ${t}.GoVersion=${stdenv.lib.getVersion go}
'';
postBuild = ''
$NIX_BUILD_TOP/go/bin/artifacts
'';
postInstall = ''
rm $bin/bin/artifacts
mkdir -p $bin/share/man/man1 $bin/etc/bash_completion.d
cp -v amtool*.1 $bin/share/man/man1
cp -v amtool_completion.sh $bin/etc/bash_completion.d
'';
meta = with stdenv.lib; {
description = "Alert dispatcher for the Prometheus monitoring system";
homepage = https://github.com/prometheus/alertmanager;
license = licenses.asl20;
maintainers = with maintainers; [ benley fpletz ];
platforms = platforms.unix;
};
}