diff options
| author | Sarah Morgensen <iskarian@mgsn.dev> | 2024-10-07 22:12:29 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2024-10-16 19:11:47 +0200 |
| commit | d86c049c1e1ee2d6c6f39b6803da3e4957c9fa7c (patch) | |
| tree | 1f4633d6a87752fdc6f388331ac075182550b068 | |
| parent | 69899ca818e5606fc4694cbaf3385562b7394dab (diff) | |
gnu: libblockdev: Fix inputs.
Add missing inputs; make util-linux a regular input since libblockdev
retains references to it.
* gnu/packages/disk.scm (libblockdev):
[native-inputs]: Move util-linux...
[inputs]: ... here. Add bcache-tools, e2fsprogs, gptfdisk, multipath-tools,
and ntfs-3g.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| -rw-r--r-- | gnu/packages/disk.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index b65df5186b5..7329eb200f4 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm | |||
| @@ -1207,24 +1207,29 @@ to create devices with respective mappings for the ATARAID sets discovered.") | |||
| 1207 | (native-inputs | 1207 | (native-inputs |
| 1208 | (list gobject-introspection | 1208 | (list gobject-introspection |
| 1209 | pkg-config | 1209 | pkg-config |
| 1210 | python-wrapper | 1210 | python-wrapper)) |
| 1211 | util-linux)) | ||
| 1212 | (inputs | 1211 | (inputs |
| 1213 | (append | 1212 | (append |
| 1214 | (cons cryptsetup (libcryptsetup-propagated-inputs)) | 1213 | (cons cryptsetup (libcryptsetup-propagated-inputs)) |
| 1215 | (list btrfs-progs | 1214 | (list bcache-tools |
| 1215 | btrfs-progs | ||
| 1216 | dosfstools | 1216 | dosfstools |
| 1217 | dmraid | 1217 | dmraid |
| 1218 | e2fsprogs | ||
| 1218 | eudev | 1219 | eudev |
| 1219 | glib | 1220 | glib |
| 1221 | gptfdisk | ||
| 1220 | kmod | 1222 | kmod |
| 1221 | libbytesize | 1223 | libbytesize |
| 1222 | libyaml | 1224 | libyaml |
| 1223 | lvm2 | 1225 | lvm2 |
| 1224 | mdadm | 1226 | mdadm |
| 1227 | multipath-tools | ||
| 1225 | ndctl | 1228 | ndctl |
| 1226 | nss | 1229 | nss |
| 1230 | ntfs-3g | ||
| 1227 | parted | 1231 | parted |
| 1232 | util-linux | ||
| 1228 | volume-key | 1233 | volume-key |
| 1229 | xfsprogs))) | 1234 | xfsprogs))) |
| 1230 | (home-page "https://github.com/storaged-project/libblockdev") | 1235 | (home-page "https://github.com/storaged-project/libblockdev") |
