e4c9cc2344
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/zc5x872jh6g02y47rfa2giw7wjypnq12-kapacitor-1.4.0-bin/bin/kapacitord -h` got 0 exit code - ran `/nix/store/zc5x872jh6g02y47rfa2giw7wjypnq12-kapacitor-1.4.0-bin/bin/kapacitord help` got 0 exit code - ran `/nix/store/zc5x872jh6g02y47rfa2giw7wjypnq12-kapacitor-1.4.0-bin/bin/tickfmt help` got 0 exit code - found 1.4.0 with grep in /nix/store/zc5x872jh6g02y47rfa2giw7wjypnq12-kapacitor-1.4.0-bin - found 1.4.0 in filename of file in /nix/store/zc5x872jh6g02y47rfa2giw7wjypnq12-kapacitor-1.4.0-bin cc "@offline @ehmry @lethalman"
24 lines
674 B
Nix
24 lines
674 B
Nix
{ stdenv, lib, fetchFromGitHub, buildGoPackage }:
|
|
|
|
buildGoPackage rec {
|
|
name = "kapacitor-${version}";
|
|
version = "1.4.0";
|
|
|
|
goPackagePath = "github.com/influxdata/kapacitor";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "influxdata";
|
|
repo = "kapacitor";
|
|
rev = "v${version}";
|
|
sha256 = "1qanf7qljzqqkyw2cdazg0ll13q8a3fs3sqydcgfbgpdmf707sj2";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Open source framework for processing, monitoring, and alerting on time series data";
|
|
license = licenses.mit;
|
|
homepage = https://influxdata.com/time-series-platform/kapacitor/;
|
|
maintainers = with maintainers; [offline];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|