summary refs log tree commit diff
path: root/pkgs/servers/monitoring/bosun/default.nix
blob: 22c741024b218b60eea0be21974e22f6800c3f5b (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
{ lib, fetchFromGitHub, buildGoPackage }:

buildGoPackage rec {
  pname = "bosun";
  version = "0.5.0";

  src = fetchFromGitHub {
    owner = "bosun-monitor";
    repo = "bosun";
    rev = version;
    sha256 = "1qj97wiqj6awivvac1n00k0x8wdv4ambzdj4502nmmnr5rdbqq88";
  };

  subPackages = [ "cmd/bosun" "cmd/scollector" ];
  goPackagePath = "bosun.org";

  meta = with lib; {
    description = "Time Series Alerting Framework";
    license = licenses.mit;
    homepage = "https://bosun.org";
    maintainers = with maintainers; [ offline ];
    platforms = platforms.unix;
  };
}