mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: lm-sensors: Don't use unstable tarball.
* gnu/packages/linux.scm (lm-sensors)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
16c92e9d38
commit
b744862704
1 changed files with 11 additions and 11 deletions
|
@ -2488,17 +2488,17 @@ (define-public lm-sensors
|
|||
(package
|
||||
(name "lm-sensors")
|
||||
(version "3.5.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (list (string-append
|
||||
"https://github.com/groeck/lm-sensors/archive/V"
|
||||
(string-join (string-split version #\.) "-")
|
||||
".tar.gz")))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1q6p6i8mrzxw70hfjvq4mlahnx2ahvbmyxsa78dmin2c7bbc2wgn"))
|
||||
(patches (search-patches "lm-sensors-hwmon-attrs.patch"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/groeck/lm-sensors.git")
|
||||
(commit (string-append "V" (string-join
|
||||
(string-split version #\.) "-")))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1mdrnb9r01z1xfdm6dpkywvf9yy9a4yzb59paih9sijwmigv19fj"))
|
||||
(patches (search-patches "lm-sensors-hwmon-attrs.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs `(("rrdtool" ,rrdtool)
|
||||
("perl" ,perl)
|
||||
|
|
Loading…
Reference in a new issue