gnu: light: Don't use unstable tarball.
* gnu/packages/linux.scm (light)[source]: Use GIT-FETCH and GIT-FILE-NAME.master
parent
543f7ad14b
commit
664cb939c6
|
@ -4961,15 +4961,15 @@ monitoring tools for Linux. These include @code{mpstat}, @code{iostat},
|
||||||
(package
|
(package
|
||||||
(name "light")
|
(name "light")
|
||||||
(version "1.2.1")
|
(version "1.2.1")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/haikarainen/light/archive/v"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/haikarainen/light.git")
|
||||||
(sha256
|
(commit (string-append "v" version))))
|
||||||
(base32
|
(sha256
|
||||||
"14vj7v3mffpp0298vnzymp8ndasa0p3qv8i6iq3f4gc1717yglak"))
|
(base32 "0zrjipd392bzjvxx0rjrb0cgi0ix1d83fwgw1mcy8kc4d16cgyjg"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
|
|
Reference in New Issue