guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: Audacity: Build from the release tarball.


From: guix-commits
Subject: 02/02: gnu: Audacity: Build from the release tarball.
Date: Thu, 27 Jan 2022 22:46:46 -0500 (EST)

lfam pushed a commit to branch master
in repository guix.

commit e5dc38d30d42eebc8c15005ed4dee0970205570f
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Thu Jan 27 22:31:44 2022 -0500

    gnu: Audacity: Build from the release tarball.
    
    * gnu/packages/audio.scm (audacity)[source]: Use url-fetch.
---
 gnu/packages/audio.scm | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index b882e2e21b..feccf662b0 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -728,14 +728,16 @@ engineers, musicians, soundtrack editors and composers.")
     (version "3.1.3")
     (source
      (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/audacity/audacity";)
-             (commit (string-append "Audacity-" version))))
-       (file-name (git-file-name name version))
+       ;; If built from the release tag, Audacity will describe itself
+       ;; as an "Alpha test version" and suggest to users that they use
+       ;; the "latest stable released version".
+       (method url-fetch)
+       (uri (string-append 
"https://github.com/audacity/audacity/releases/download/";
+                           "Audacity-" version "/audacity-" version
+                           "-source.tar.gz"))
        (sha256
         (base32
-         "1689q9apbjf9nnda62shb8j7hm4hxd47mhk4l5h3c728mjjkilmi"))
+         "189agx11361k9j958s6q5bngnnfx0rwaf0dwbjxy6fwvsb1wv3px"))
        (modules '((guix build utils)))
        (snippet
         ;; Remove bundled libraries.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]