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

25 lines
577 B
Nix
Raw Normal View History

2016-06-06 00:28:52 +00:00
{ lib, fetchFromGitHub, buildGoPackage }:
2015-11-16 13:07:00 +00:00
2016-06-06 00:28:52 +00:00
buildGoPackage rec {
2015-11-16 13:07:00 +00:00
name = "bosun";
2016-06-10 08:00:18 +00:00
rev = "0.5.0-rc4";
2015-11-16 13:07:00 +00:00
src = fetchFromGitHub {
inherit rev;
owner = "bosun-monitor";
repo = "bosun";
2016-06-10 08:00:18 +00:00
sha256 = "0cybhy5nshg3z2h5i6r8p9d0qihcnz8s8wh5cqf17ix17k31qans";
2015-11-16 13:07:00 +00:00
};
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.linux;
2015-11-16 13:07:00 +00:00
};
}