gnu: sonic: Don't use unstable tarball.

* gnu/packages/speech.scm (sonic)[source]: Download using git-fetch.
This commit is contained in:
Efraim Flashner 2019-11-13 22:07:52 +02:00
parent 2bbda4f077
commit 520cca28ee
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -25,6 +25,7 @@ (define-module (gnu packages speech)
#:use-module ((guix licenses) #:prefix license:) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix utils) #:use-module (guix utils)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (gnu packages) #:use-module (gnu packages)
@ -199,13 +200,14 @@ (define-public sonic
(name "sonic") (name "sonic")
(version "0.2.0") (version "0.2.0")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/waywardgeek/sonic/archive/" (uri (git-reference
"release-" version ".tar.gz")) (url "https://github.com/waywardgeek/sonic")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "release-" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"11a0q9wkgbb9ymf52v7dvybfhj8hprgr67zs1xcng143fvjpr0n7")))) "08xwnpw9cnaix1n1i7gvpq5hrfrqc2z1snjhjapfam506hrc77g4"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f ; No test suite. `(#:tests? #f ; No test suite.