diff options
author | kiasoc5 <kiasoc5@disroot.org> | 2022-08-06 01:37:50 -0400 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-08-06 09:27:00 +0200 |
commit | 47989e0a5f02200c708f8b12e19c97c660ffcc4d (patch) | |
tree | be28dd5fa998470acfac15410b8981c8ebe90efa | |
parent | d457a5ec09028c594b7c450cbe827b96e5e61701 (diff) | |
download | guix-47989e0a5f02200c708f8b12e19c97c660ffcc4d.tar guix-47989e0a5f02200c708f8b12e19c97c660ffcc4d.tar.gz |
gnu: ugrep: Build with zstd support.
* gnu/packages/search.scm (ugrep)[inputs]: Add zstd lib.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
-rw-r--r-- | gnu/packages/search.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm index db5579a708..4a867ec1be 100644 --- a/gnu/packages/search.scm +++ b/gnu/packages/search.scm @@ -696,7 +696,8 @@ bibliographic data and simple document and bibtex retrieval.") lz4 lzip ;; lzma pcre2 - zlib)) + zlib + `(,zstd "lib"))) (arguments `(#:tests? #f ; no way to rebuild the binary input files #:test-target "test" |