nckx pushed a commit to branch master
in repository guix.
commit ffbe69c4c3a232363be79012ccbc2c4f3cb46115
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Sun Jun 12 02:00:00 2022 +0200
gnu: btrfs-progs: Fix tests.
* gnu/packages/linux.scm (btrfs-progs)[native-inputs]: Add libaio,
liburing, and util-linux.
---
gnu/packages/linux.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index e80ca436b6..d7a80ab491 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -5632,10 +5632,12 @@ and copy/paste text in the console and in xterm.")
("python-sphinx" ,python-sphinx)
;; For tests.
("acl" ,acl)
- ("which" ,which)
("dmsetup" ,lvm2)
- ;; The tests need 'grep' with perl regexp support.
- ("grep" ,grep)))
+ ("grep" ,grep) ; need Perl regexp support
+ ("libaio" ,libaio)
+ ("liburing" ,liburing)
+ ("util-linux" ,util-linux) ; for fallocate
+ ("which" ,which)))
(home-page "https://btrfs.wiki.kernel.org/index.php/Main_Page")
(synopsis "Create and manage btrfs copy-on-write file systems")
(description "Btrfs is a @dfn{copy-on-write} (CoW) file system for Linux