Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6
7buildGoModule rec {
8 pname = "sachet";
9 version = "0.3.2";
10
11 src = fetchFromGitHub {
12 owner = "messagebird";
13 repo = pname;
14 rev = version;
15 hash = "sha256-zcFViE1/B+wrkxZ3YIyfy2IBbxLvXOf8iK/6eqZb1ZQ=";
16 };
17
18 vendorHash = null;
19
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 };
27}