guix-commits
[Top][All Lists]
Advanced

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

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


From: guix-commits
Subject: 02/03: gnu: zlib: 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 442413912b645b7f54168d253873f0982bd39acf
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Mon Jul 27 15:44:51 2020 +0200

    gnu: zlib: Use url-fetch instead of git-fetch.
    
    * gnu/packages/guile.scm (guile-zlib)[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 b2670ec..4babff2 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -781,16 +781,15 @@ manipulate repositories of the Git version control 
system.")
   (package
     (name "guile-zlib")
     (version "0.0.1")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://notabug.org/guile-zlib/guile-zlib.git";)
-                    (commit version)))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "139ixlg0663azwpcj24sw27kmzxr5am0j6hn62ffjchi9w1qb3k0"))
-              (modules '((guix build utils)))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "https://notabug.org/guile-zlib/guile-zlib/archive/";
+                       version ".tar.gz"))
+       (sha256
+        (base32
+         "1caz6cbl6sg5567nk68z88rshp0m26zmb0a9ry1jkc1ivpk0n47i"))))
     (build-system gnu-build-system)
     (arguments
      '(#:make-flags



reply via email to

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