gnu: cuetools: Fetch sources from git.

* gnu/packages/audio.scm (cuetools)[source]: Fetch from git.
This commit is contained in:
Ricardo Wurmus 2018-11-10 23:21:37 +01:00
parent 8e5995e397
commit 4289a306b7
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3026,15 +3026,16 @@ (define-public cuetools
(name "cuetools")
(version "1.4.1")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/svend/cuetools/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/svend/cuetools.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"01xi3rvdmil9nawsha04iagjylqr1l9v9vlzk99scs8c207l58i4"))))
"02ksv1ahf1v4cr2xbclsfv5x17m9ivzbssb5r8xjm97yh8a7spa3"))))
(build-system gnu-build-system)
;; The source tarball is not bootstrapped.
;; The source checkout is not bootstrapped.
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)