diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-07-27 15:48:28 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-07-27 15:48:28 +0200 |
commit | 69361e8881a79897e370322aedde9e6f459e26be (patch) | |
tree | 52f0b412a5c78dbf0986f06ab9316e1df3314bc6 /gnu | |
parent | 442413912b645b7f54168d253873f0982bd39acf (diff) | |
download | guix-69361e8881a79897e370322aedde9e6f459e26be.tar.gz guix-69361e8881a79897e370322aedde9e6f459e26be.zip |
gnu: lzlib: Use url-fetch instead of git-fetch.
* gnu/packages/guile.scm (guile-lzlib)[source]: Use url-fetch instead of
git-fetch.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/guile.scm | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 4babff2723..4b7577f2a2 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 |