mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: i3lock-color: Don't use unstable tarball.
* gnu/packages/wm.scm (i3lock-color)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
a48db08afe
commit
f45cc966ba
1 changed files with 7 additions and 7 deletions
|
@ -392,16 +392,16 @@ (define-public i3lock-color
|
|||
(version "2.11-c")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/PandorasFox/i3lock-color/"
|
||||
"archive/" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/PandorasFox/i3lock-color.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0zh7il2y6dmzym3w6r9xii5dma8pjjjlq4dm5iby7m3gvplj4q9p"))))
|
||||
(base32 "1myq9fazkwd776agrnj27bm5nwskvss9v9a5qb77n037dv8d0rdw"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ;no tests included
|
||||
`(#:tests? #f)) ; no tests included
|
||||
(inputs
|
||||
`(("cairo" ,cairo)
|
||||
("libev" ,libev)
|
||||
|
|
Loading…
Reference in a new issue