about summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/sachet.nix
blob: 7bf7b4dc26a575e78f65e75cdc6d82fd7a8a71fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "sachet";
  version = "0.3.1";

  src = fetchFromGitHub {
    owner = "messagebird";
    repo = pname;
    rev = version;
    sha256 = "sha256-zcFViE1/B+wrkxZ3YIyfy2IBbxLvXOf8iK/6eqZb1ZQ=";
  };

  vendorSha256 = null;

  meta = with lib; {
    description = "An SMS alerting tool for Prometheus's Alertmanager";
    homepage = "https://github.com/messagebird/sachet";
    license = licenses.bsd2;
    maintainers = with maintainers; [ govanify ];
  };
}