diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-05-01 13:31:53 +0300 |
---|---|---|
committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-05-01 14:15:03 +0300 |
commit | fd12c7de4565a8da988e2b35c645c3ef71329ce2 (patch) | |
tree | 07b2e73835d841a0feae460df00a8c15e2cf6979 | |
parent | 93f4a0db0675fe847e1fb6bcd740393e0ddb4ceb (diff) | |
download | guix-fd12c7de4565a8da988e2b35c645c3ef71329ce2.tar.gz guix-fd12c7de4565a8da988e2b35c645c3ef71329ce2.zip |
gnu: aide: Update to 0.19.
* gnu/packages/admin.scm (aide): Update to 0.19.
[arguments]<#:configure-flags>: Add "--without-fstype" flag to disable the
support for Linux-only file system type restricted rules.
[inputs]: Remove libmhash; add nettle.
Change-Id: I067157438f4c0e50ba0a57688adc4f10e705f086
-rw-r--r-- | gnu/packages/admin.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index b19c35c20e..4cd6415744 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -218,20 +218,21 @@ (define-public aide (package (name "aide") - (version "0.18.8") + (version "0.19") (source (origin (method url-fetch) (uri (string-append "https://github.com/aide/aide/releases/download/v" version "/aide-" version ".tar.gz")) (sha256 - (base32 "0q1sp0vwrwbmw6ymw1kwd4i8walijwppa0dq61b2qzni6b32srhn")))) + (base32 "1r55mf4nl6ydb7zwzkz4689j9v9kaabz5gsrcgbrj4p09chs1yz7")))) (build-system gnu-build-system) (arguments (list #:configure-flags #~(list "--with-posix-acl" "--with-selinux" "--with-xattr" - "--with-config-file=/etc/aide.conf"))) + "--with-config-file=/etc/aide.conf" + "--without-fstype"))) (native-inputs (list bison flex pkg-config)) (inputs @@ -239,8 +240,8 @@ attr libgcrypt libgpg-error - libmhash libselinux + nettle pcre2 `(,zlib "static") zlib)) |