gnu: guile-lzlib: Update to 0.3.0.

Fixes <https://issues.guix.gnu.org/69596>.

* gnu/packages/guile.scm (guile-lzlib): Update to 0.3.0.
[source]: Switch to ‘git-fetch’.

Change-Id: Ic9f8fe2d0ab24b66cfba618840773a3e89aea48c
This commit is contained in:
Ludovic Courtès 2024-04-28 23:08:34 +02:00
parent 9f183c3627
commit 7cef6b7ba5
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -922,17 +922,16 @@ (define-public guile2.2-zlib
(define-public guile-lzlib
(package
(name "guile-lzlib")
(version "0.0.2")
(version "0.3.0")
(home-page "https://notabug.org/guile-lzlib/guile-lzlib")
(source
(origin
(method url-fetch)
(uri
(string-append "https://notabug.org/guile-lzlib/guile-lzlib/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference (url home-page) (commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"11sggvncyx08ssp1s5xii4d6nskh1qwqihnbpzzvkrs7sivxn8w6"))))
"19870njb3q5h6zy239gvra92ji077c6s8xm0hgcn42z74q5wqnk6"))))
(build-system gnu-build-system)
(arguments
'(#:make-flags
@ -944,7 +943,6 @@ (define-public guile-lzlib
"This package provides Guile bindings for lzlib, a C library for
in-memory LZMA compression and decompression. The bindings are written in
pure Scheme by using Guile's foreign function interface.")
(home-page "https://notabug.org/guile-lzlib/guile-lzlib")
(license license:gpl3+)))
(define-public guile2.2-lzlib