diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-12-11 01:00:01 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-12-11 01:00:10 +0100 |
commit | 1077b0b73de75f3609410d321947e73896417d6c (patch) | |
tree | 0e5b83ea3006903e3ebcb04ecd8af453ca37d2c3 /gnu/packages | |
parent | 7ff99f7a56e169591d271d4da6aadd0f7048efff (diff) | |
download | guix-1077b0b73de75f3609410d321947e73896417d6c.tar.gz |
gnu: mtd-utils: Remove input labels.
* gnu/packages/linux.scm (mtd-utils)[inputs]: Remove input labels.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/linux.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index f39a77d6d0..d3904a601e 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -7011,12 +7011,12 @@ exceeded.") (native-inputs (list cmocka pkg-config)) (inputs - `(("acl" ,acl) ; extended attributes (xattr) - ("libuuid" ,util-linux "lib") - ("lzo" ,lzo) - ("openssl" ,openssl) ; optional crypto support - ("zlib" ,zlib) - ("zstd" ,zstd "lib"))) + (list acl ; extended attributes (xattr) + lzo + openssl ; optional crypto support + `(,util-linux "lib") + zlib + `(,zstd "lib"))) (build-system gnu-build-system) (synopsis "MTD Flash Storage Utilities") (description "This package provides utilities for testing, partitioning, etc |