gnu: btop: Update to 1.4.0.

* gnu/packages/admin.scm (btop): Update to 1.4.0.
[arguments](make-flags) Pass CC.

Change-Id: I1ded453e5ab41567d9647eaabf888b96b024cd23
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
This commit is contained in:
Ashish SHUKLA 2024-09-25 16:45:40 +02:00 committed by Zheng Junjie
parent 9e0f65b55b
commit 168d955c95
No known key found for this signature in database
GPG key ID: 3B5AA993E1A2DFF0

View file

@ -763,7 +763,7 @@ (define-public ttyload
(define-public btop
(package
(name "btop")
(version "1.3.2")
(version "1.4.0")
(source (origin
(method git-fetch)
(uri (git-reference
@ -772,11 +772,12 @@ (define-public btop
(file-name (git-file-name name version))
(sha256
(base32
"084n0nbv1029lvfv4na2k9fqyray7m77dff1537b8ffk08ib4d4j"))))
"0vgw6hwqh6zbzrvrn3i0xwi9ykm1qdvhqcyz3mjakd7w303lx603"))))
(build-system gnu-build-system)
(arguments
(list #:tests? #f ;no test suite
#:make-flags #~(list (string-append "PREFIX=" #$output))
#:make-flags #~(list (string-append "PREFIX=" #$output)
(string-append "CC=" #$(cc-for-target)))
#:phases #~(modify-phases %standard-phases
(delete 'configure))))
(home-page "https://github.com/aristocratos/btop")