guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/06: gnu: Zabbix: Update to 6.0.0.


From: guix-commits
Subject: 01/06: gnu: Zabbix: Update to 6.0.0.
Date: Tue, 15 Feb 2022 14:45:14 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 162105fc5a8ce9ab9fd422cae33cdad2f140dc93
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Tue Feb 15 18:09:17 2022 +0100

    gnu: Zabbix: Update to 6.0.0.
    
    * gnu/packages/monitoring.scm (zabbix-agentd): Update to 6.0.0.
    [inputs]: Remove LIBICONV and PCRE.  Add PCRE2.
    [arguments]: Adjust #:configure-flags accordingly.
---
 gnu/packages/monitoring.scm | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm
index 8c4012f004..7935c92815 100644
--- a/gnu/packages/monitoring.scm
+++ b/gnu/packages/monitoring.scm
@@ -164,7 +164,7 @@ etc. via a Web interface.  Features include:
 (define-public zabbix-agentd
   (package
     (name "zabbix-agentd")
-    (version "5.4.10")
+    (version "6.0.0")
     (source
      (origin
        (method url-fetch)
@@ -172,7 +172,7 @@ etc. via a Web interface.  Features include:
              "https://cdn.zabbix.com/zabbix/sources/stable/";
              (version-major+minor version) "/zabbix-" version ".tar.gz"))
        (sha256
-        (base32 "0xwqwmq811fgxl6j9a9527i55jcpq98gqvwcda8la9gj0rsiqas6"))
+        (base32 "0dlb5c34lwd3j754pgaddsvpqad5c5yqbh25y4qxfpiy4fzqmw2y"))
        (modules '((guix build utils)))
        (snippet
         '(substitute* '("src/zabbix_proxy/proxy.c"
@@ -182,15 +182,10 @@ etc. via a Web interface.  Features include:
             "/run/setuid-programs/fping")))))
     (build-system gnu-build-system)
     (arguments
-     `(#:configure-flags
-       (list "--enable-agent"
-             "--enable-ipv6"
-             (string-append "--with-iconv="
-                            (assoc-ref %build-inputs "libiconv"))
-             (string-append "--with-libpcre="
-                            (assoc-ref %build-inputs "pcre")))))
+     '(#:configure-flags
+       '("--enable-agent" "--enable-ipv6" "--with-libpcre2")))
     (inputs
-     (list libiconv pcre))
+     (list pcre2))
     (home-page "https://www.zabbix.com/";)
     (synopsis "Distributed monitoring solution (client-side agent)")
     (description "This package provides a distributed monitoring



reply via email to

[Prev in Thread] Current Thread [Next in Thread]