gnu: sparse: Update to 0.6.4.

* gnu/packages/c.scm (sparse): Update to 0.6.4.
[arguments]: Don't explicitly return #t from phases.
This commit is contained in:
Tobias Geerinckx-Rice 2021-10-04 17:30:31 +02:00
parent 2cced18b76
commit 08e3224909
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -388,7 +388,7 @@ (define-public packcc
(define-public sparse (define-public sparse
(package (package
(name "sparse") (name "sparse")
(version "0.6.3") (version "0.6.4")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (uri
@ -396,7 +396,7 @@ (define-public sparse
"sparse-" version ".tar.xz")) "sparse-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"16d8c4dhipjzjf8z4z7pix1pdpqydz0v4r7i345f5s09hjnxpxnl")))) "0z1qds52144nvsdnl82r3zs3vax618v920jmffyyssmwj54qpcka"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("perl" ,perl))) (inputs `(("perl" ,perl)))
(arguments (arguments
@ -406,8 +406,7 @@ (define-public sparse
(add-after 'unpack 'patch-cgcc (add-after 'unpack 'patch-cgcc
(lambda _ (lambda _
(substitute* "cgcc" (substitute* "cgcc"
(("'cc'") (string-append "'" (which "gcc") "'"))) (("'cc'") (string-append "'" (which "gcc") "'"))))))))
#t)))))
(synopsis "Semantic C parser for Linux development") (synopsis "Semantic C parser for Linux development")
(description (description
"Sparse is a semantic parser for C and is required for Linux development. "Sparse is a semantic parser for C and is required for Linux development.