guix-commits
[Top][All Lists]
Advanced

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

07/10: gnu: coq-coquelicot: Update to 3.0.3.


From: guix-commits
Subject: 07/10: gnu: coq-coquelicot: Update to 3.0.3.
Date: Mon, 6 Jan 2020 22:09:38 -0500 (EST)

brettgilio pushed a commit to branch master
in repository guix.

commit d481db8baf809e0537a4d4aa4fe9b8e22b1d86e6
Author: Brett Gilio <address@hidden>
AuthorDate: Mon Jan 6 01:39:52 2020 -0600

    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.
---
 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 acae58a..0e4a1f2 100644
--- a/gnu/packages/coq.scm
+++ b/gnu/packages/coq.scm
@@ -367,17 +367,22 @@ part of the distribution.")
 (define-public coq-coquelicot
   (package
     (name "coq-coquelicot")
-    (version "3.0.2")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://gforge.inria.fr/frs/download.php/";
-                                  "file/37523/coquelicot-" version ".tar.gz"))
-              (sha256
-               (base32
-                "1biia7nfqf7vaqq5gmykl4rwjyvrcwss6r2jdf0in5pvp2rnrj2w"))))
+    (version "3.0.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://gitlab.inria.fr/coquelicot/coquelicot.git";)
+             (commit (string-append "coquelicot-" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0m5wbr2s8lnf8b7cfwv15hyzsmbcaz6hgdn7aazcrkxnwr87vgkp"))))
     (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]