guix-commits
[Top][All Lists]
Advanced

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

03/12: gnu: address@hidden: Don't use unstable tarball.


From: guix-commits
Subject: 03/12: gnu: address@hidden: Don't use unstable tarball.
Date: Sun, 14 Apr 2019 23:18:52 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

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

    gnu: address@hidden: Don't use unstable tarball.
    
    * gnu/packages/ocaml.scm (camlp4-4.07)[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 c06b5a0..2a2a052 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -623,14 +623,15 @@ syntax of OCaml.")
     (inherit camlp4-4.02)
     (name "camlp4")
     (version "4.07+1")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/ocaml/camlp4/archive/";
-                                  version ".tar.gz"))
-              (sha256
-               (base32
-                "143hhxv1i6aq413z0i1pynrjcfl2g5gnh5r3863v6h9z0riqknzc"))
-              (file-name (string-append name "-" version ".tar.gz"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ocaml/camlp4.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0cxl4hkqcvspvkx4f2k83217rh6051fll9i2yz7cw6m3bq57mdvl"))))
     (properties
      `((ocaml4.02-variant . ,(delay camlp4-4.02))))
     (native-inputs



reply via email to

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