diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-10 23:12:38 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-10 23:29:26 +0100 |
commit | 458baefb4008d04d1423c654c8f7e2999a6be317 (patch) | |
tree | 565ca37df87aebc444d1960963689b15409afd7c | |
parent | eca7729301a7c10886bc6790cf499acb534286d3 (diff) | |
download | gnu-guix-458baefb4008d04d1423c654c8f7e2999a6be317.tar gnu-guix-458baefb4008d04d1423c654c8f7e2999a6be317.tar.gz |
gnu: rsound: Fetch sources from git.
* gnu/packages/audio.scm (rsound)[source]: Fetch from git.
-rw-r--r-- | gnu/packages/audio.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index b383c4785d..61081521d5 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2812,12 +2812,13 @@ synthesizer written in C++.") (version "1.1") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/Themaister/RSound/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/Themaister/RSound.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "1wzs40c0k5zpkmm5ffl6c17xmr399sxli7ys0fbb9ib0fd334knx")))) + (base32 "0gspmr3klwnq98h17p5hc6ifygya4p80g4g8r7a1qavm3mv19waf")))) (build-system gnu-build-system) (inputs `(("alsa-lib" ,alsa-lib) |