summary refs log tree commit diff
path: root/pkgs/servers/consul
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/consul')
-rw-r--r--pkgs/servers/consul/alerts.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/servers/consul/alerts.nix b/pkgs/servers/consul/alerts.nix
new file mode 100644
index 00000000000..b3dbb21d5bb
--- /dev/null
+++ b/pkgs/servers/consul/alerts.nix
@@ -0,0 +1,27 @@
+{ lib, goPackages, fetchFromGitHub }:
+
+with goPackages;
+
+buildGoPackage rec {
+  name = "consul-alerts-${version}";
+  version = "0.2.0";
+
+  src = fetchFromGitHub {
+    owner = "AcalephStorage";
+    repo = "consul-alerts";
+    rev = "v${version}";
+    sha256 = "02rgz68g3i408biq2aqilpqraqirzmba9mh7avdga5bljp427jgn";
+  };
+
+  goPackagePath = "github.com/AcalephStorage/consul-alerts";
+  dontInstallSrc = true;
+  subPackages = [ "./" ];
+
+  meta = with lib; {
+    description = "A simple daemon to send notifications based on Consul health checks";
+    homepage = https://github.com/AcalephStorage/consul-alerts;
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ offline ];
+    platforms = platforms.unix;
+  };
+}