mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: coq-bignums: Don't use unstable tarball.
* gnu/pacakges/coq.scm (coq-bignums)[source]: Download using git-fetch.
This commit is contained in:
parent
8b1fd3cafd
commit
775373b872
1 changed files with 6 additions and 5 deletions
|
@ -377,13 +377,14 @@ (define-public coq-bignums
|
||||||
(name "coq-bignums")
|
(name "coq-bignums")
|
||||||
(version "8.9.0")
|
(version "8.9.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/coq/bignums/archive/V"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/coq/bignums.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
|
||||||
"0pmk9smw7a14wrfkvjlvmpxim4bsv6xnm5xkrlld2faqy74a044g"))))
|
"03qz1w2xb2j5p06liz5yyafl0fl9vprcqm6j0iwi7rxwghl00p01"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ocaml" ,ocaml)
|
`(("ocaml" ,ocaml)
|
||||||
|
|
Loading…
Reference in a new issue