diff options
author | Marius Bakke <marius@gnu.org> | 2021-05-09 11:46:45 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-05-09 23:43:32 +0200 |
commit | 307522fde4dc8bda385de48498db128423533106 (patch) | |
tree | 7873e52c8047a0e31d25ce01a29360dad410a7a0 /gnu/packages | |
parent | cd42bad5d51d0069bceaea629f97bdc6154399da (diff) | |
download | guix-307522fde4dc8bda385de48498db128423533106.tar.gz |
gnu: kmod: Update to 28.
* gnu/packages/linux.scm (kmod): Update to 28. [native-inputs]: Add ZSTD.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/linux.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index ce8219945d..40d7cc9067 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3332,7 +3332,7 @@ to use Linux' inotify mechanism, which allows file accesses to be monitored.") (define-public kmod (package (name "kmod") - (version "27") + (version "28") (source (origin (method url-fetch) (uri @@ -3340,11 +3340,13 @@ to use Linux' inotify mechanism, which allows file accesses to be monitored.") "kmod-" version ".tar.xz")) (sha256 (base32 - "035wzfzjx4nwidk747p8n085mgkvy531ppn16krrajx2dkqzply1")) + "0v52nghxzd69jnk8mr4900qlk1rg8hf0hdv34n281afs2c7zqs9r")) (patches (search-patches "kmod-module-directory.patch")))) (build-system gnu-build-system) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("pkg-config" ,pkg-config) + ;; For tests. + ("zstd" ,zstd))) (inputs `(("xz" ,xz) ("zlib" ,zlib))) |