Merge pull request #207803 from r-ryantm/auto-update/prometheus-alertmanager

prometheus-alertmanager: 0.24.0 -> 0.25.0
This commit is contained in:
Fabian Affolter 2022-12-26 10:13:57 +01:00 committed by GitHub
commit f59059e2cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,23 @@
{ lib, go, buildGoModule, fetchFromGitHub, installShellFiles }:
{ lib
, go
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec {
pname = "alertmanager";
version = "0.24.0";
version = "0.25.0";
rev = "v${version}";
src = fetchFromGitHub {
inherit rev;
owner = "prometheus";
repo = "alertmanager";
sha256 = "sha256-hoCE0wD9/Sh/oBce7kCg/wG44FmMs6dAKnEYP+2sH0w=";
hash = "sha256-h87m3flE2GRAXMBgaAC+sOsPWEs7l9loQt6jGaSdXfQ=";
};
vendorSha256 = "sha256-ePb9qdCTEHHIV6JlbrBlaZjD5APwQuoGloO88W5S7Oc=";
vendorHash = "sha256-BX4mT0waYtKvNyOW3xw5FmXI8TLmv857YBFTnV7XXD8=";
subPackages = [ "cmd/alertmanager" "cmd/amtool" ];
@ -37,6 +42,7 @@ buildGoModule rec {
meta = with lib; {
description = "Alert dispatcher for the Prometheus monitoring system";
homepage = "https://github.com/prometheus/alertmanager";
changelog = "https://github.com/prometheus/alertmanager/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ benley fpletz globin Frostman ];
platforms = platforms.unix;