3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/monitoring/bosun/default.nix

25 lines
573 B
Nix
Raw Normal View History

2016-06-06 01:28:52 +01:00
{ lib, fetchFromGitHub, buildGoPackage }:
2015-11-16 13:07:00 +00:00
2016-06-06 01:28:52 +01:00
buildGoPackage rec {
2015-11-16 13:07:00 +00:00
name = "bosun";
2016-06-26 06:58:52 +01:00
rev = "0.5.0";
2015-11-16 13:07:00 +00:00
src = fetchFromGitHub {
inherit rev;
owner = "bosun-monitor";
repo = "bosun";
2016-06-26 06:58:52 +01:00
sha256 = "1qj97wiqj6awivvac1n00k0x8wdv4ambzdj4502nmmnr5rdbqq88";
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
};
}