1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-27 11:32:21 +02:00

gnu: volume-key: Add required transitive dependencies.

* gnu/packages/disk.scm (volume-key): Add transitive dependencies for
libdevmapper and libcryptsetup.

Change-Id: Iaced5bedd2f6ec8e67118b2ee4d01f14704a3694
This commit is contained in:
Josselin Poiret
2024-01-16 18:38:18 +01:00
committed by Ludovic Courtès
parent 88874db03e
commit 6747d4bdb5
+7 -6
View File
@@ -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