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