jpoiret pushed a commit to branch core-updates-glibc-2.39 in repository guix.
commit 96231b73ece15c0fada5608a2e045c17142ce334 Author: Josselin Poiret <[email protected]> AuthorDate: Tue Jan 16 18:38:18 2024 +0100 gnu: volume-key: Add required transitive dependencies. * gnu/packages/disk.scm (volume-key): Add transitive dependencies for libdevmapper and libcryptsetup. Change-Id: Iaced5bedd2f6ec8e67118b2ee4d01f14704a3694 --- gnu/packages/disk.scm | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 4582ad3555..6cc191ff25 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -1036,12 +1036,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
