1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 11:30:44 +02:00

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
This commit is contained in:
Artyom V. Poptsov 2025-05-01 13:31:53 +03:00
parent 93f4a0db06
commit fd12c7de45
No known key found for this signature in database
GPG key ID: 935EBE0736DC857E

View file

@ -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))