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:
Tobias Geerinckx-Rice 2019-03-08 16:10:39 +01:00
parent a48db08afe
commit f45cc966ba
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 7 additions and 7 deletions

View File

@ -392,16 +392,16 @@ prompt.")
(version "2.11-c") (version "2.11-c")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/PandorasFox/i3lock-color/" (uri (git-reference
"archive/" version ".tar.gz")) (url "https://github.com/PandorasFox/i3lock-color.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "1myq9fazkwd776agrnj27bm5nwskvss9v9a5qb77n037dv8d0rdw"))))
"0zh7il2y6dmzym3w6r9xii5dma8pjjjlq4dm5iby7m3gvplj4q9p"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f)) ;no tests included `(#:tests? #f)) ; no tests included
(inputs (inputs
`(("cairo" ,cairo) `(("cairo" ,cairo)
("libev" ,libev) ("libev" ,libev)