summary refs log blame commit diff
path: root/pkgs/servers/monitoring/bosun/default.nix
blob: 905244833602abd0e2e81b1ee339a3dea23ae5f5 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                         
 
                    

                            

                         

                            
                  
                                                                    









                                                   
                                

    
{ lib, fetchFromGitHub, buildGoPackage }:

buildGoPackage rec {
  name = "bosun-${version}";
  version = "0.5.0";

  src = fetchFromGitHub {
    owner = "bosun-monitor";
    repo = "bosun";
    rev = version;
    sha256 = "1qj97wiqj6awivvac1n00k0x8wdv4ambzdj4502nmmnr5rdbqq88";
  };

  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;
  };
}