about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/monitoring/zabbix/agent.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/monitoring/zabbix/agent.nix')
-rw-r--r--nixpkgs/pkgs/servers/monitoring/zabbix/agent.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/monitoring/zabbix/agent.nix b/nixpkgs/pkgs/servers/monitoring/zabbix/agent.nix
new file mode 100644
index 000000000000..3f1d80ca4df9
--- /dev/null
+++ b/nixpkgs/pkgs/servers/monitoring/zabbix/agent.nix
@@ -0,0 +1,43 @@
+{ lib, stdenv, fetchurl, pkg-config, libiconv, openssl, pcre }:
+
+import ./versions.nix ({ version, hash, ... }:
+  stdenv.mkDerivation {
+    pname = "zabbix-agent";
+    inherit version;
+
+    src = fetchurl {
+      url = "https://cdn.zabbix.com/zabbix/sources/stable/${lib.versions.majorMinor version}/zabbix-${version}.tar.gz";
+      inherit hash;
+    };
+
+    nativeBuildInputs = [ pkg-config ];
+    buildInputs = [
+      libiconv
+      openssl
+      pcre
+    ];
+
+    configureFlags = [
+      "--enable-agent"
+      "--enable-ipv6"
+      "--with-iconv"
+      "--with-libpcre"
+      "--with-openssl=${openssl.dev}"
+    ];
+    makeFlags = [
+      "AR:=$(AR)"
+      "RANLIB:=$(RANLIB)"
+    ];
+
+    postInstall = ''
+      cp conf/zabbix_agentd/*.conf $out/etc/zabbix_agentd.conf.d/
+    '';
+
+    meta = with lib; {
+      description = "An enterprise-class open source distributed monitoring solution (client-side agent)";
+      homepage = "https://www.zabbix.com/";
+      license = licenses.gpl2;
+      maintainers = with maintainers; [ mmahut psyanticy ];
+      platforms = platforms.linux;
+    };
+  })