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

25 lines
579 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 {
pname = "bosun";
2018-05-28 12:59:57 +00:00
version = "0.5.0";
2015-11-16 13:07:00 +00:00
src = fetchFromGitHub {
owner = "bosun-monitor";
repo = "bosun";
2018-05-28 12:59:57 +00:00
rev = version;
2016-06-26 05:58:52 +00: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.unix;
2015-11-16 13:07:00 +00:00
};
}