mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: Add Guile-zstd.
* gnu/packages/guile.scm (guile-zstd): New variable.
This commit is contained in:
parent
a016a451c4
commit
32568f5b24
1 changed files with 28 additions and 0 deletions
|
@ -848,4 +848,32 @@ (define-public guile-lzlib
|
|||
(home-page "https://notabug.org/guile-lzlib/guile-lzlib")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public guile-zstd
|
||||
(package
|
||||
(name "guile-zstd")
|
||||
(version "0.1.1")
|
||||
(home-page "https://notabug.org/guile-zstd/guile-zstd")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference (url home-page)
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1c8l7829b5yx8wdc0mrhzjfwb6h9hb7cd8dfxcr71a7vlsi86310"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("pkg-config" ,pkg-config)
|
||||
("guile" ,guile-3.0)))
|
||||
(inputs
|
||||
`(("zstd" ,zstd "lib")
|
||||
("guile" ,guile-3.0)))
|
||||
(synopsis "GNU Guile bindings to the zstd compression library")
|
||||
(description
|
||||
"This package provides a GNU Guile interface to the zstd (``zstandard'')
|
||||
compression library.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
;;; guile.scm ends here
|
||||
|
|
Loading…
Reference in a new issue