depot/third_party/nixpkgs/pkgs/servers/monitoring/prometheus/sachet.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

26 lines
550 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 = "SMS alerting tool for Prometheus's Alertmanager";
mainProgram = "sachet";
homepage = "https://github.com/messagebird/sachet";
license = licenses.bsd2;
maintainers = with maintainers; [ govanify ];
};
}