gnu: arb: Fetch sources from git.
* gnu/packages/algebra.scm (arb)[source]: Fetch from git.
This commit is contained in:
parent
e7c7b10db4
commit
6aa54e23da
|
@ -379,14 +379,14 @@ fast arithmetic.")
|
||||||
(name "arb")
|
(name "arb")
|
||||||
(version "2.14.0")
|
(version "2.14.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/fredrik-johansson/arb/archive/"
|
(url "https://github.com/fredrik-johansson/arb.git")
|
||||||
version ".tar.gz"))
|
(commit version)))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ncr27nd20xxi18nj30cvpa6r52v59nq7gbi34x3l4xym3p8mlmx"))))
|
"1ndxg7h4xvccjgp5l9z2f8b66dsff6fhf86bn5n7f75a1ksd7554"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("flint" ,flint))) ; flint.h is included by arf.h
|
`(("flint" ,flint))) ; flint.h is included by arf.h
|
||||||
|
|
Loading…
Reference in New Issue