bosun: 0.8.0-preview -> unstable-2021-05-13

This commit is contained in:
Aaron Jheng 2022-11-21 11:43:50 +00:00
parent c107fb66da
commit 4f9f140807
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -1,18 +1,21 @@
{ lib, fetchFromGitHub, buildGoPackage }:
{ lib, stdenv, fetchFromGitHub, buildGoModule }:
buildGoPackage rec {
buildGoModule {
pname = "bosun";
version = "0.8.0-preview";
version = "unstable-2021-05-13";
src = fetchFromGitHub {
owner = "bosun-monitor";
repo = "bosun";
rev = version;
sha256 = "172mm006jarc2zm2yq7970k2a9akmyzvsrr8aqym4wk5v9x8kk0r";
rev = "e25bc3e69a1fb2e29d28f13a78ffa71cc0b8cc87";
hash = "sha256-YL1RqoryHRWKyUwO9NE8z/gsE195D+vFWR8YpZH+gbw=";
};
vendorHash = "sha256-5mVI5cyuIB+6KHlTpDxSNGU7yBsGQC4IA+iDgvVFVZM=";
subPackages = [ "cmd/bosun" "cmd/scollector" ];
goPackagePath = "bosun.org";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Time Series Alerting Framework";
@ -20,5 +23,6 @@ buildGoPackage rec {
homepage = "https://bosun.org";
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
broken = stdenv.isDarwin;
};
}