mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-16 07:58:01 -05:00
gnu: Add guile-lzlib.
* gnu/packages/guile-xyz.scm (guile-lzlib): New variable.
This commit is contained in:
parent
20df47e5a3
commit
554fd0e869
1 changed files with 33 additions and 0 deletions
|
@ -3726,3 +3726,36 @@ (define-public guile-zlib
|
||||||
Guile's foreign function interface.")
|
Guile's foreign function interface.")
|
||||||
(home-page "https://notabug.org/guile-zlib/guile-zlib")
|
(home-page "https://notabug.org/guile-zlib/guile-zlib")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public guile-lzlib
|
||||||
|
(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)))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:make-flags
|
||||||
|
'("GUILE_AUTO_COMPILE=0"))) ;to prevent guild warnings
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("guile" ,guile-3.0)
|
||||||
|
("lzlib" ,lzlib)))
|
||||||
|
(synopsis "Guile bindings to lzlib")
|
||||||
|
(description
|
||||||
|
"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+)))
|
||||||
|
|
Loading…
Reference in a new issue