aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2023-09-24 02:00:00 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2023-09-24 02:00:00 +0200
commit63efa203d39f497f58eed0678e15a1487e3ac9c4 (patch)
treeefda85cffca73f3cb7c72dd62d7f7eeaa59fd664
parent2a0aedc297e2918f1562cda6eb5b60efcc56c4e0 (diff)
downloadguix-63efa203d39f497f58eed0678e15a1487e3ac9c4.tar.gz
guix-63efa203d39f497f58eed0678e15a1487e3ac9c4.zip
gnu: erofs-utils: Update to 1.7.
* gnu/packages/linux.scm (erofs-utils): Update to 1.7. [inputs]: Add zlib.
-rw-r--r--gnu/packages/linux.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 6eb7fb43b8..c6fceaf81c 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -9776,7 +9776,7 @@ kernel side implementation.")
(define-public erofs-utils
(package
(name "erofs-utils")
- (version "1.5")
+ (version "1.7")
(source
(origin
(method git-fetch)
@@ -9785,11 +9785,12 @@ kernel side implementation.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0rgkw3b924xdg49v3qi8a10w41zfk276wb6fp71lb9q9cfc81idw"))))
+ (base32 "0bi8n1kb263v1gvis21pa9dxsf3p96d1nasm21icmv3rd9g2xh6p"))))
(build-system gnu-build-system)
(inputs
(list lz4
- `(,util-linux "lib")))
+ `(,util-linux "lib")
+ zlib))
(native-inputs
(list autoconf automake libtool pkg-config))
(home-page "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/")