Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / sachet.nix
blob3b1bc1a5f83a31e10a34ee3d98d3912dccc403a9
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "sachet";
8   version = "0.3.2";
10   src = fetchFromGitHub {
11     owner = "messagebird";
12     repo = pname;
13     rev = version;
14     hash = "sha256-zcFViE1/B+wrkxZ3YIyfy2IBbxLvXOf8iK/6eqZb1ZQ=";
15   };
17   vendorHash = null;
19   meta = with lib; {
20     description = "SMS alerting tool for Prometheus's Alertmanager";
21     mainProgram = "sachet";
22     homepage = "https://github.com/messagebird/sachet";
23     license = licenses.bsd2;
24     maintainers = with maintainers; [ govanify ];
25   };