summaryrefslogtreecommitdiffstats
path: root/krebs
diff options
context:
space:
mode:
authorlassulus <lass@lassul.us>2017-02-05 11:52:01 +0100
committerlassulus <lass@lassul.us>2017-02-05 11:52:01 +0100
commitf44d29940e4168738b6b600003da44e52c1d383b (patch)
tree83d26825c14fff9cc18af3a882a7d3ec45b04e84 /krebs
parentaedb8cf265960c528db31b0aba00ec799b90d27a (diff)
l 5: remove obsolete kapacitor
Diffstat (limited to 'krebs')
-rw-r--r--krebs/5pkgs/kapacitor/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/krebs/5pkgs/kapacitor/default.nix b/krebs/5pkgs/kapacitor/default.nix
deleted file mode 100644
index 804826941..000000000
--- a/krebs/5pkgs/kapacitor/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, lib, fetchFromGitHub, buildGoPackage }:
-
-buildGoPackage rec {
- name = "kapacitor-${version}";
- version = "1.0.0";
-
- goPackagePath = "github.com/influxdata/kapacitor";
-
- src = fetchFromGitHub {
- owner = "influxdata";
- repo = "kapacitor";
- rev = "v${version}";
- sha256 = "14l9bhj6qdif79s4dyqqbnjgj3m4iarvw0ckld1wdhpdgvl8w9qh";
- };
-
- 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;
- };
-}