jql: 8.0.0 -> 8.0.2 (#362884)
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / sachet.nix
blob8011b96e23a2e61bf34c21d9aec524253470d7dc
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "sachet";
9   version = "0.3.2";
11   src = fetchFromGitHub {
12     owner = "messagebird";
13     repo = pname;
14     rev = version;
15     hash = "sha256-zcFViE1/B+wrkxZ3YIyfy2IBbxLvXOf8iK/6eqZb1ZQ=";
16   };
18   vendorHash = null;
20   meta = with lib; {
21     description = "SMS alerting tool for Prometheus's Alertmanager";
22     mainProgram = "sachet";
23     homepage = "https://github.com/messagebird/sachet";
24     license = licenses.bsd2;
25     maintainers = with maintainers; [ govanify ];
26   };