guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: lzlib: Use url-fetch instead of git-fetch.


From: guix-commits
Subject: 03/03: gnu: lzlib: Use url-fetch instead of git-fetch.
Date: Mon, 27 Jul 2020 12:25:22 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit 69361e8881a79897e370322aedde9e6f459e26be
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Mon Jul 27 15:48:28 2020 +0200

    gnu: lzlib: Use url-fetch instead of git-fetch.
    
    * gnu/packages/guile.scm (guile-lzlib)[source]: Use url-fetch instead of
    git-fetch.
---
 gnu/packages/guile.scm | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 4babff2..4b7577f 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -813,16 +813,15 @@ Guile's foreign function interface.")
   (package
     (name "guile-lzlib")
     (version "0.0.1")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://notabug.org/guile-lzlib/guile-lzlib.git";)
-                    (commit version)))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "0ny4pbig5x1lv83b63c2613gwv98myk3rm44l88ic7lrff6cd2hr"))
-              (modules '((guix build utils)))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "https://notabug.org/guile-lzlib/guile-lzlib/archive/";
+                       version ".tar.gz"))
+       (sha256
+        (base32
+         "0rdmszn1qix085ci2mddwq5cypipc004fk7arrrkgn9bv39hazza"))))
     (build-system gnu-build-system)
     (arguments
      '(#:make-flags



reply via email to

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