nixpkgs/pkgs/servers/monitoring/alertmanager-bot/default.nix
Pavel Borzenkov ea1a726b9c alertmanager-bot: pass version and revision variables
The bot outputs its own version/revision in the log during startup and
also in a response to the `/status` command.

So make sure both version and revision are set.
2021-04-24 12:31:09 +03:00

37 lines
904 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "alertmanager-bot";
version = "0.4.3";
src = fetchFromGitHub {
owner = "metalmatze";
repo = pname;
rev = version;
sha256 = "1hjfkksqb675gabzjc221b33h2m4s6qsanmkm382d3fyzqj71dh9";
};
vendorSha256 = "1v0fgin8dn81b559zz4lqmrl7hikr46g4gb18sci4riql5qs1isj";
postPatch = ''
sed "s;/templates/default.tmpl;$out/share&;" -i cmd/alertmanager-bot/main.go
'';
preBuild = ''
export buildFlagsArray=(
"-ldflags=-s -w -X main.Version=v${version} -X main.Revision=${src.rev}"
)
'';
postInstall = ''
install -Dm644 -t $out/share/templates $src/default.tmpl
'';
meta = with lib; {
description = "Bot for Prometheus' Alertmanager";
homepage = "https://github.com/metalmatze/alertmanager-bot";
license = licenses.mit;
maintainers = with maintainers; [ mmahut ];
};
}