mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: cmus: Fetch sources from git.
* gnu/packages/music.scm (cmus)[source]: Fetch from git.
This commit is contained in:
parent
ec618c2005
commit
4e82946888
1 changed files with 6 additions and 6 deletions
|
@ -309,14 +309,14 @@ (define-public cmus
|
||||||
(name "cmus")
|
(name "cmus")
|
||||||
(version "2.7.1")
|
(version "2.7.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/" name "/" name "/archive/v"
|
(url "https://github.com/cmus/cmus.git")
|
||||||
version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0raixgjavkm7hxppzsc5zqbfbh2bhjcmbiplhnsxsmyj8flafyc1"))))
|
"0xd96py21bl869qlv1353zw7xsgq6v5s8szr0ldr63zj5fgc2ps5"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; cmus does not include tests
|
`(#:tests? #f ; cmus does not include tests
|
||||||
|
|
Loading…
Reference in a new issue