[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/05: gnu: bcachefs-tools: Remove input labels.
From: |
guix-commits |
Subject: |
02/05: gnu: bcachefs-tools: Remove input labels. |
Date: |
Sun, 19 Dec 2021 20:06:13 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 3657015d89bc755c1ad862ee09b6e3edb391e561
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Mon Dec 20 01:07:39 2021 +0100
gnu: bcachefs-tools: Remove input labels.
* gnu/packages/file-systems.scm (bcachefs-tools)[inputs]:
Remove input labels.
---
gnu/packages/file-systems.scm | 29 ++++++++++++++---------------
1 file changed, 14 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index 6963912..ef7242d 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -457,21 +457,20 @@ from a mounted file system.")
python
python-docutils))
(inputs
- `(("eudev" ,eudev)
- ("keyutils" ,keyutils)
- ("libaio" ,libaio)
- ("libscrypt" ,libscrypt)
- ("libsodium" ,libsodium)
- ("liburcu" ,liburcu)
- ("util-linux:lib" ,util-linux "lib") ; lib{blkid,uuid}
- ("lz4" ,lz4)
- ("zlib" ,zlib)
- ("zstd:lib" ,zstd "lib")
-
- ;; Only for mount.bcachefs.sh.
- ("coreutils" ,coreutils-minimal)
- ("gawk" ,gawk)
- ("util-linux" ,util-linux)))
+ (list eudev
+ keyutils
+ libaio
+ libscrypt
+ libsodium
+ liburcu
+ `(,util-linux "lib")
+ lz4
+ zlib
+ `(,zstd "lib")
+ ;; Only for mount.bcachefs.sh.
+ coreutils-minimal
+ gawk
+ util-linux))
(home-page "https://bcachefs.org/")
(synopsis "Tools to create and manage bcachefs file systems")
(description