[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#48846] [PATCH core-updates 2/2] gnu: kmod: Add zstd support.
From: |
Brice Waegeneire |
Subject: |
[bug#48846] [PATCH core-updates 2/2] gnu: kmod: Add zstd support. |
Date: |
Sat, 5 Jun 2021 13:02:24 +0200 |
* gnu/packages/linux.scm (kmod)[inputs]: Add zstd:lib.
[arguments]: Enable zstd support.
---
gnu/packages/linux.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index ec223680fb..fe16325913 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -3379,9 +3379,10 @@ to use Linux' inotify mechanism, which allows file
accesses to be monitored.")
("zstd" ,zstd)))
(inputs
`(("xz" ,xz)
- ("zlib" ,zlib)))
+ ("zlib" ,zlib)
+ ("zstd-lib" ,zstd "lib")))
(arguments
- `(#:configure-flags '("--with-xz" "--with-zlib"
+ `(#:configure-flags '("--with-xz" "--with-zlib" "--with-zstd"
"--disable-test-modules")
#:phases
(modify-phases %standard-phases
--
2.31.1