mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-26 18:35:19 +01:00
nongnu: compcert: Update to 3.8.
* nongnu/packages/coq.scm (compcert): Update to 3.8. [source]: Switch from url-fetch to git-fetch. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
05107f1b94
commit
fd668447b3
1 changed files with 8 additions and 6 deletions
|
@ -20,7 +20,7 @@
|
||||||
#:use-module (ice-9 match)
|
#:use-module (ice-9 match)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (gnu packages coq)
|
#:use-module (gnu packages coq)
|
||||||
#:use-module (gnu packages ocaml)
|
#:use-module (gnu packages ocaml)
|
||||||
#:use-module (nonguix licenses))
|
#:use-module (nonguix licenses))
|
||||||
|
@ -28,14 +28,16 @@
|
||||||
(define-public compcert
|
(define-public compcert
|
||||||
(package
|
(package
|
||||||
(name "compcert")
|
(name "compcert")
|
||||||
(version "3.7")
|
(version "3.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "http://compcert.inria.fr/release/compcert-"
|
(uri (git-reference
|
||||||
version ".tgz"))
|
(url "https://github.com/AbsInt/compcert")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1c3yp3ns830vg3q8b0y61xffd1fgkmkg585pdsv6qmy2sqp1pvnf"))))
|
"1gzlyxvw64ca12qql3wnq3bidcx9ygsklv9grjma3ib4hvg7vnr7"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
|
Loading…
Reference in a new issue