diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-12-20 01:07:39 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-12-20 02:04:50 +0100 |
commit | 3657015d89bc755c1ad862ee09b6e3edb391e561 (patch) | |
tree | 72bcf845c8a40f75a07c1c38e64fb2d2a9968d13 /gnu/packages/file-systems.scm | |
parent | 036a503942d90ae82af1e7df932a501abd4e0361 (diff) |
gnu: bcachefs-tools: Remove input labels.
* gnu/packages/file-systems.scm (bcachefs-tools)[inputs]:
Remove input labels.
Diffstat (limited to 'gnu/packages/file-systems.scm')
-rw-r--r-- | gnu/packages/file-systems.scm | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index 696391256d..ef7242dc59 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 |