mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
e2f81c0f30
Fixes CVE-2024-22119 / https://support.zabbix.com/browse/ZBX-24070 Changes: https://www.zabbix.com/rn/rn5.0.41 https://www.zabbix.com/rn/rn5.0.40 https://www.zabbix.com/rn/rn5.0.39 https://www.zabbix.com/rn/rn5.0.38
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ 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;
|
|
};
|
|
})
|