gnu: Audacity: Build from the release tarball.
* gnu/packages/audio.scm (audacity)[source]: Use url-fetch.
This commit is contained in:
parent
beda1cd794
commit
e5dc38d30d
1 changed files with 8 additions and 6 deletions
|
@ -728,14 +728,16 @@ engineers, musicians, soundtrack editors and composers.")
|
||||||
(version "3.1.3")
|
(version "3.1.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
;; If built from the release tag, Audacity will describe itself
|
||||||
(uri (git-reference
|
;; as an "Alpha test version" and suggest to users that they use
|
||||||
(url "https://github.com/audacity/audacity")
|
;; the "latest stable released version".
|
||||||
(commit (string-append "Audacity-" version))))
|
(method url-fetch)
|
||||||
(file-name (git-file-name name version))
|
(uri (string-append "https://github.com/audacity/audacity/releases/download/"
|
||||||
|
"Audacity-" version "/audacity-" version
|
||||||
|
"-source.tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1689q9apbjf9nnda62shb8j7hm4hxd47mhk4l5h3c728mjjkilmi"))
|
"189agx11361k9j958s6q5bngnnfx0rwaf0dwbjxy6fwvsb1wv3px"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
;; Remove bundled libraries.
|
;; Remove bundled libraries.
|
||||||
|
|
Reference in a new issue