guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

09/10: gnu: coq-interval: Update to 3.4.1.


From: guix-commits
Subject: 09/10: gnu: coq-interval: Update to 3.4.1.
Date: Mon, 6 Jan 2020 22:09:39 -0500 (EST)

brettgilio pushed a commit to branch master
in repository guix.

commit 8f1216552ceb02e8a16579637041d7b5f1eb96f3
Author: Brett Gilio <address@hidden>
AuthorDate: Mon Jan 6 02:19:57 2020 -0600

    gnu: coq-interval: Update to 3.4.1.
    
    * gnu/packages/coq.scm (coq-interval): Update to 3.4.1.
    [source]: Use GIT-FETCH and GIT-FILE-NAME.
    [native-inputs]: Add autoconf and automake for remake.
---
 gnu/packages/coq.scm | 23 ++++++++++++++---------
 1 file changed, 14 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm
index 2666b42..08e0584 100644
--- a/gnu/packages/coq.scm
+++ b/gnu/packages/coq.scm
@@ -453,17 +453,22 @@ provides BigN, BigZ, BigQ that used to be part of Coq 
standard library.")
 (define-public coq-interval
   (package
     (name "coq-interval")
-    (version "3.4.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://gforge.inria.fr/frs/download.php/";
-                                  "file/37524/interval-" version ".tar.gz"))
-              (sha256
-               (base32
-                "023j9sd64brqvjdidqkn5m8d7a93zd9r86ggh573z9nkjm2m7vvg"))))
+    (version "3.4.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://gitlab.inria.fr/coqinterval/interval.git";)
+             (commit (string-append "interval-" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "03q3dfqi3r3f7aji5s06ig4aav9ajcwswwdzi5lrgr69z0m487k4"))))
     (build-system gnu-build-system)
     (native-inputs
-     `(("ocaml" ,ocaml)
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("ocaml" ,ocaml)
        ("which" ,which)
        ("coq" ,coq)))
     (propagated-inputs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]