gnu: kiss-fft-for-extempore: Fetch sources from git.
* gnu/packages/algebra.scm (kiss-fft-for-extempore)[source]: Fetch from git.
This commit is contained in:
parent
6aa54e23da
commit
9774fac480
|
@ -568,13 +568,14 @@ syntax is similar to that of C, so basic usage is familiar. It also includes
|
||||||
(name "kiss-fft-for-extempore")
|
(name "kiss-fft-for-extempore")
|
||||||
(version "1.3.0")
|
(version "1.3.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/extemporelang/kiss_fft/archive/"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/extemporelang/kiss_fft.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0hkp9l6l4c92fb1l2sh6a6zv1hynpvb2s4d03vd8vxyvybc0l4pv"))))
|
"0jasbmqy4wkqrqx3w64s1dfmj34875xmsl72mb26aa4hpyn14bi2"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments `(#:tests? #f)) ; no tests included
|
(arguments `(#:tests? #f)) ; no tests included
|
||||||
;; Extempore refuses to build on architectures other than x86_64
|
;; Extempore refuses to build on architectures other than x86_64
|
||||||
|
|
Loading…
Reference in New Issue