guix-commits
[Top][All Lists]
Advanced

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

55/88: gnu: ocaml-re: Don't use unstable tarball.


From: guix-commits
Subject: 55/88: gnu: ocaml-re: Don't use unstable tarball.
Date: Wed, 10 Apr 2019 23:44:44 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 07c3711d0fdaae8cdd3e6a466b48b98add251918
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Apr 9 00:13:09 2019 +0200

    gnu: ocaml-re: Don't use unstable tarball.
    
    * gnu/packages/ocaml.scm (ocaml-re)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/ocaml.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 5272d9f..f341039 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -3558,14 +3558,15 @@ standard iterator type starting from 4.07.")
   (package
     (name "ocaml-re")
     (version "1.8.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/ocaml/ocaml-re//archive/";
-                                  version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "1pdb0mr6z5ax6szblr3f5lbdnqq9grm97cmsfjmdma60yrx2rqhd"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ocaml/ocaml-re.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0ch6hvmm4ym3w2vghjxf3ka5j1023a37980fqi4zcb7sx756z20i"))))
     (build-system dune-build-system)
     (arguments
      `(#:tests? #f



reply via email to

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