mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
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:
parent
9f183c3627
commit
7cef6b7ba5
1 changed files with 6 additions and 8 deletions
|
@ -922,17 +922,16 @@ (define-public guile2.2-zlib
|
||||||
(define-public guile-lzlib
|
(define-public guile-lzlib
|
||||||
(package
|
(package
|
||||||
(name "guile-lzlib")
|
(name "guile-lzlib")
|
||||||
(version "0.0.2")
|
(version "0.3.0")
|
||||||
|
(home-page "https://notabug.org/guile-lzlib/guile-lzlib")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri (git-reference (url home-page) (commit version)))
|
||||||
(string-append "https://notabug.org/guile-lzlib/guile-lzlib/archive/"
|
(file-name (git-file-name name version))
|
||||||
version ".tar.gz"))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"11sggvncyx08ssp1s5xii4d6nskh1qwqihnbpzzvkrs7sivxn8w6"))))
|
"19870njb3q5h6zy239gvra92ji077c6s8xm0hgcn42z74q5wqnk6"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:make-flags
|
'(#:make-flags
|
||||||
|
@ -944,7 +943,6 @@ (define-public guile-lzlib
|
||||||
"This package provides Guile bindings for lzlib, a C library for
|
"This package provides Guile bindings for lzlib, a C library for
|
||||||
in-memory LZMA compression and decompression. The bindings are written in
|
in-memory LZMA compression and decompression. The bindings are written in
|
||||||
pure Scheme by using Guile's foreign function interface.")
|
pure Scheme by using Guile's foreign function interface.")
|
||||||
(home-page "https://notabug.org/guile-lzlib/guile-lzlib")
|
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public guile2.2-lzlib
|
(define-public guile2.2-lzlib
|
||||||
|
|
Loading…
Reference in a new issue