diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-09 08:37:12 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-09 08:37:53 +0100 |
commit | 1b12b572a5df2b8c6f67ad0515a87543da098a09 (patch) | |
tree | 942ad2685ff194682586e3e4fd914fe2d87f97dd | |
parent | b1b82aed5d5947eaa1ebf300f8c592e660555a3c (diff) | |
download | guix-1b12b572a5df2b8c6f67ad0515a87543da098a09.tar guix-1b12b572a5df2b8c6f67ad0515a87543da098a09.tar.gz |
gnu: powertabeditor: Fetch sources from git.
* gnu/packages/music.scm (powertabeditor)[source]: Fetch from git.
-rw-r--r-- | gnu/packages/music.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 7df29deabd..3f0498ee53 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -1141,14 +1141,14 @@ your own lessons.") (name "powertabeditor") (version "2.0.0-alpha10") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/powertab/powertabeditor/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/powertab/powertabeditor.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "1fr14ql0yhlqvh6y08yaanszm2nvca5i50rqym396kfvga3ky18x")) + "1z4fhdp71ck9synr12rg1p6365xnypd8ih40c5icj4si36khvksk")) (modules '((guix build utils))) (snippet '(begin |