mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: pianobar: Fetch sources from git.
* gnu/packages/music.scm (pianobar)[source]: Fetch from git.
This commit is contained in:
parent
487e3f5a80
commit
1410e178bb
1 changed files with 6 additions and 5 deletions
|
@ -2443,13 +2443,14 @@ (define-public pianobar
|
|||
(name "pianobar")
|
||||
(version "2016.06.02")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/PromyLOPh/"
|
||||
name "/archive/" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/PromyLOPh/pianobar.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1hi5rr6jcr0kwf4xfz007ndwkjkp287lhwlsgfz6iryqa5n6jzcp"))))
|
||||
"058fbdxp7n35hxwy3b8slfy4pb4n63cb173vfmywqa06wh1dv6f6"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no tests
|
||||
|
|
Loading…
Reference in a new issue