nixpkgs/pkgs/servers/monitoring/bosun/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
589 B
Nix
Raw Normal View History

2016-06-05 20:28:52 -04:00
{ lib, fetchFromGitHub, buildGoPackage }:
2015-11-16 08:07:00 -05:00
2016-06-05 20:28:52 -04:00
buildGoPackage rec {
pname = "bosun";
2020-06-14 06:35:21 -04:00
version = "0.8.0-preview";
2015-11-16 08:07:00 -05:00
src = fetchFromGitHub {
owner = "bosun-monitor";
repo = "bosun";
2018-05-28 08:59:57 -04:00
rev = version;
2020-06-14 06:35:21 -04:00
sha256 = "172mm006jarc2zm2yq7970k2a9akmyzvsrr8aqym4wk5v9x8kk0r";
2015-11-16 08:07:00 -05:00
};
subPackages = [ "cmd/bosun" "cmd/scollector" ];
goPackagePath = "bosun.org";
meta = with lib; {
description = "Time Series Alerting Framework";
license = licenses.mit;
homepage = "https://bosun.org";
2015-11-16 08:07:00 -05:00
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
2015-11-16 08:07:00 -05:00
};
}