mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: coq-coquelicot: Update to 3.0.3.
* gnu/packages/coq.scm (coq-coquelicot): Update to 3.0.3. [source]: Use GIT-FETCH and GIT-FILE-NAME. [native-inputs]: Add autoconf and automake.
This commit is contained in:
parent
a61fe4c04e
commit
d481db8baf
1 changed files with 14 additions and 9 deletions
|
@ -367,17 +367,22 @@ (define-public coq-mathcomp
|
||||||
(define-public coq-coquelicot
|
(define-public coq-coquelicot
|
||||||
(package
|
(package
|
||||||
(name "coq-coquelicot")
|
(name "coq-coquelicot")
|
||||||
(version "3.0.2")
|
(version "3.0.3")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://gforge.inria.fr/frs/download.php/"
|
(method git-fetch)
|
||||||
"file/37523/coquelicot-" version ".tar.gz"))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://gitlab.inria.fr/coquelicot/coquelicot.git")
|
||||||
(base32
|
(commit (string-append "coquelicot-" version))))
|
||||||
"1biia7nfqf7vaqq5gmykl4rwjyvrcwss6r2jdf0in5pvp2rnrj2w"))))
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0m5wbr2s8lnf8b7cfwv15hyzsmbcaz6hgdn7aazcrkxnwr87vgkp"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ocaml" ,ocaml)
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("ocaml" ,ocaml)
|
||||||
("which" ,which)
|
("which" ,which)
|
||||||
("coq" ,coq)))
|
("coq" ,coq)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
Loading…
Reference in a new issue