gnu: Add Guile-zstd.

* gnu/packages/guile.scm (guile-zstd): New variable.
This commit is contained in:
Ludovic Courtès 2020-12-27 15:27:36 +01:00
parent a016a451c4
commit 32568f5b24
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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