26 lines
647 B
Nix
26 lines
647 B
Nix
{ lib, fetchFromGitHub, goPackages }:
|
|
|
|
with goPackages;
|
|
|
|
buildGoPackage rec {
|
|
rev = "20150506172827";
|
|
name = "bosun-${rev}";
|
|
goPackagePath = "bosun.org";
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "bosun-monitor";
|
|
repo = "bosun";
|
|
sha256 = "0rnfiv9b835b8j8r9qh9j2mz9mm9q45vfg9cqa4nngrgfd0cqvl8";
|
|
};
|
|
subPackages = [ "cmd/bosun" ];
|
|
|
|
meta = with lib; {
|
|
description = "Time series alerting framework";
|
|
longDescription = ''
|
|
An advanced, open-source monitoring and alerting system by Stack Exchange.
|
|
'';
|
|
homepage = http://bosun.org;
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|