mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
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:
parent
9e0f65b55b
commit
168d955c95
1 changed files with 4 additions and 3 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue