me
/
guix
Archived
1
0
Fork 0

gnu: light: Don't use unstable tarball.

* gnu/packages/linux.scm (light)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-11-12 15:05:46 +01:00
parent 543f7ad14b
commit 664cb939c6
No known key found for this signature in database
GPG Key ID: D889B0F018C5493C
1 changed files with 9 additions and 9 deletions

View File

@ -4961,15 +4961,15 @@ monitoring tools for Linux. These include @code{mpstat}, @code{iostat},
(package
(name "light")
(version "1.2.1")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/haikarainen/light/archive/v"
version ".tar.gz"))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/haikarainen/light.git")
(commit (string-append "v" version))))
(sha256
(base32
"14vj7v3mffpp0298vnzymp8ndasa0p3qv8i6iq3f4gc1717yglak"))
(file-name (string-append name "-" version ".tar.gz"))))
(base32 "0zrjipd392bzjvxx0rjrb0cgi0ix1d83fwgw1mcy8kc4d16cgyjg"))
(file-name (git-file-name name version))))
(build-system gnu-build-system)
(native-inputs
`(("autoconf" ,autoconf)