gnu: cava: Fetch sources from git.

* gnu/packages/audio.scm (cava)[source]: Fetch from git.
This commit is contained in:
Ricardo Wurmus 2018-11-10 23:27:50 +01:00
parent c2a2d364df
commit a7fde1a86d
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3443,14 +3443,14 @@ (define-public cava
(name "cava")
(version "0.6.1")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/karlstav/cava/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/karlstav/cava.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"13d72swnjs894llf0paandmhf1lf90dz6ygkcdw4bv84wzkq1f4q"))))
"1kvhqgijs29909w3sq9m0bslx2zxxn4b3i07kdz4hb0dqkppxpjy"))))
(build-system gnu-build-system)
(native-inputs
`(("autoconf" ,autoconf)