From d115c882c284fd7b2a4bab90989d3d9e90194d95 Mon Sep 17 00:00:00 2001 From: mc-fucker Date: Fri, 1 Aug 2025 11:02:08 +0200 Subject: [PATCH] zabbix agent -> 7.4.1 --- packages/zabbix/agent2.nix | 4 ++-- packages/zabbix/versions.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/zabbix/agent2.nix b/packages/zabbix/agent2.nix index edb8f6a..7bfc34a 100644 --- a/packages/zabbix/agent2.nix +++ b/packages/zabbix/agent2.nix @@ -1,4 +1,4 @@ -{ lib, buildGoModule, fetchurl, autoreconfHook, pkg-config, libiconv, openssl, pcre, zlib }: +{ lib, buildGoModule, fetchurl, autoreconfHook, pkg-config, libiconv, openssl, pcre, pcre2, zlib }: import ./versions.nix ({ version, hash, vendorHash ? throw "unsupported version ${version} for zabbix-agent2", ... }: buildGoModule { @@ -15,7 +15,7 @@ import ./versions.nix ({ version, hash, vendorHash ? throw "unsupported version inherit vendorHash; nativeBuildInputs = [ autoreconfHook pkg-config ]; - buildInputs = [ libiconv openssl pcre zlib ]; + buildInputs = [ libiconv openssl pcre pcre2 zlib ]; # need to provide GO* env variables & patch for reproducibility postPatch = '' diff --git a/packages/zabbix/versions.nix b/packages/zabbix/versions.nix index 3f5f6df..dc9dea6 100644 --- a/packages/zabbix/versions.nix +++ b/packages/zabbix/versions.nix @@ -1,7 +1,7 @@ generic: { latest = generic { - version = "7.2.5"; - hash = "sha256-DQGzk90isqYLNvs3qY/PEIHGg62Ygyot3YeUOhIAg54="; + version = "7.4.1"; + hash = "sha256-AtTttBuXR8CJ98pFvMjczdF3n4i0k9wV/59w26n1OUM="; vendorHash = null; };