nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

prometheus-alertmanager: add changelog to meta

authored by

Fabian Affolter and committed by
GitHub
dab02514 881d6b70

+9 -3
+9 -3
pkgs/servers/monitoring/prometheus/alertmanager.nix
··· 1 - { lib, go, buildGoModule, fetchFromGitHub, installShellFiles }: 1 + { lib 2 + , go 3 + , buildGoModule 4 + , fetchFromGitHub 5 + , installShellFiles 6 + }: 2 7 3 8 buildGoModule rec { 4 9 pname = "alertmanager"; ··· 14 9 inherit rev; 15 10 owner = "prometheus"; 16 11 repo = "alertmanager"; 17 - sha256 = "sha256-h87m3flE2GRAXMBgaAC+sOsPWEs7l9loQt6jGaSdXfQ="; 12 + hash = "sha256-h87m3flE2GRAXMBgaAC+sOsPWEs7l9loQt6jGaSdXfQ="; 18 13 }; 19 14 20 - vendorSha256 = "sha256-BX4mT0waYtKvNyOW3xw5FmXI8TLmv857YBFTnV7XXD8="; 15 + vendorHash = "sha256-BX4mT0waYtKvNyOW3xw5FmXI8TLmv857YBFTnV7XXD8="; 21 16 22 17 subPackages = [ "cmd/alertmanager" "cmd/amtool" ]; 23 18 ··· 42 37 meta = with lib; { 43 38 description = "Alert dispatcher for the Prometheus monitoring system"; 44 39 homepage = "https://github.com/prometheus/alertmanager"; 40 + changelog = "https://github.com/prometheus/alertmanager/blob/v${version}/CHANGELOG.md"; 45 41 license = licenses.asl20; 46 42 maintainers = with maintainers; [ benley fpletz globin Frostman ]; 47 43 platforms = platforms.unix;