From 442413912b645b7f54168d253873f0982bd39acf Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Mon, 27 Jul 2020 15:44:51 +0200 Subject: 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(-) (limited to 'gnu/packages/guile.scm') diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index b2670eca7d..4babff2723 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 -- cgit v1.2.3