mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: radeontop: Don't use unstable tarball.
* gnu/packages/linux.scm (radeontop)[source]: Use GIT-FETCH and GIT-FILE-NAME. [home-page]: Move down to its conventional spot.
This commit is contained in:
parent
88e1bce53e
commit
ee861a54ab
1 changed files with 10 additions and 8 deletions
|
@ -4406,14 +4406,15 @@ (define-public radeontop
|
|||
(package
|
||||
(name "radeontop")
|
||||
(version "1.2")
|
||||
(home-page "https://github.com/clbr/radeontop/")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append home-page "archive/v" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0jc3qs8m5hhbhxra4yslcq3vi179hvcwvdal80gsrgz6cj78zvfw"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/clbr/radeontop.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1b1m30r2nfwqkajqw6m01xmfhlq83z1qylyijxg7962mp9x2k0gw"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases (modify-phases %standard-phases
|
||||
|
@ -4437,6 +4438,7 @@ (define-public radeontop
|
|||
("libpciaccess" ,libpciaccess)
|
||||
("libxcb" ,libxcb)
|
||||
("ncurses" ,ncurses)))
|
||||
(home-page "https://github.com/clbr/radeontop/")
|
||||
(synopsis "Usage monitor for AMD Radeon graphics")
|
||||
(description "RadeonTop monitors resource consumption on supported AMD
|
||||
Radeon Graphics Processing Units (GPUs), either in real time as bar graphs on
|
||||
|
|
Loading…
Reference in a new issue