diff options
-rw-r--r-- | gnu/packages/disk.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 357920af9c..d92c0ebe15 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -1039,12 +1039,13 @@ and its highly optimized now for efficient performance.") (native-inputs (list pkg-config swig python-3)) ; used to generate the Python bindings (inputs - `(("cryptsetup" ,cryptsetup) - ("nss" ,nss) - ("libblkid" ,util-linux "lib") - ("lvm2" ,lvm2) ; for "-ldevmapper" - ("glib" ,glib) - ("gpgme" ,gpgme))) + (append + (cons cryptsetup (libcryptsetup-propagated-inputs)) + (cons lvm2 (libdevmapper-propagated-inputs)) + (list nss + (list util-linux "lib") + glib + gpgme))) (arguments `(#:tests? #f ; not sure how tests are supposed to pass, even when run manually #:phases |