depot/third_party/nixpkgs/pkgs/servers/monitoring/prometheus/sachet.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

25 lines
525 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "sachet";
version = "0.3.2";
src = fetchFromGitHub {
owner = "messagebird";
repo = pname;
rev = version;
hash = "sha256-zcFViE1/B+wrkxZ3YIyfy2IBbxLvXOf8iK/6eqZb1ZQ=";
};
vendorHash = 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 ];
};
}