gnu: dcadec: Fetch sources from git.
* gnu/packages/audio.scm (dcadec)[source]: Fetch from git.
This commit is contained in:
parent
4289a306b7
commit
b249ff5d37
|
@ -3076,13 +3076,14 @@ use them split WAVE data into multiple files.")
|
||||||
(name "dcadec")
|
(name "dcadec")
|
||||||
(version "0.2.0")
|
(version "0.2.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/foo86/dcadec/archive/v"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/foo86/dcadec.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0i0dpypgqkhhi4v1fmsp2way6w9kbcix3c7q79pmg39yvrzj17gd"))))
|
"07nd0ajizrp1w02bsyfcv18431r8m8rq8gjfmz9wmckpg7cxj2hs"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; Test files are missing: https://github.com/foo86/dcadec/issues/53
|
;; Test files are missing: https://github.com/foo86/dcadec/issues/53
|
||||||
|
|
Loading…
Reference in New Issue