gnu: audit: Update to 2.8.4.
* gnu/packages/admin.scm (audit): Update to 2.8.4. [arguments]: Remove #:phases.
This commit is contained in:
parent
95da608451
commit
00f81f83a1
1 changed files with 5 additions and 15 deletions
|
@ -1773,27 +1773,17 @@ platform-specific methods.")
|
||||||
(define-public audit
|
(define-public audit
|
||||||
(package
|
(package
|
||||||
(name "audit")
|
(name "audit")
|
||||||
(version "2.4.5")
|
(home-page "https://people.redhat.com/sgrubb/audit/")
|
||||||
|
(version "2.8.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://people.redhat.com/sgrubb/audit/"
|
(uri (string-append home-page name "-" version ".tar.gz"))
|
||||||
"audit-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1q1q51dvxscbi4kbakmd4bn0xrvwwaiwvaya79925cbrqwzxsg77"))))
|
"0f4ci6ffznnmgblwgv7ich9mjfk3p6y5l6m6h3chhmzw156nj454"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(home-page "https://people.redhat.com/sgrubb/audit/")
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "--with-python=no")
|
`(#:configure-flags (list "--with-python=no")))
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'fix-tests
|
|
||||||
(lambda _
|
|
||||||
;; In the build environmnte /etc/passwd does not contain an entry
|
|
||||||
;; for root/0, so we have to patch the expected value.
|
|
||||||
(substitute* "auparse/test/auparse_test.ref"
|
|
||||||
(("=0 \\(root\\)") "=0 (unknown(0))"))
|
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("openldap" ,openldap)
|
`(("openldap" ,openldap)
|
||||||
("gnutls" ,gnutls)
|
("gnutls" ,gnutls)
|
||||||
|
|
Reference in a new issue