[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/45: gnu: volume-key: Add required transitive dependencies.
From: |
guix-commits |
Subject: |
04/45: gnu: volume-key: Add required transitive dependencies. |
Date: |
Sun, 18 Feb 2024 08:41:04 -0500 (EST) |
jpoiret pushed a commit to branch core-updates-glibc-2.39
in repository guix.
commit 96231b73ece15c0fada5608a2e045c17142ce334
Author: Josselin Poiret <dev@jpoiret.xyz>
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
- branch core-updates-glibc-2.39 created (now cbfa13a859), guix-commits, 2024/02/18
- 05/45: gnu: libblockdev: Add libcryptsetup propagated inputs., guix-commits, 2024/02/18
- 01/45: gnu: cryptsetup: Update to 2.6.1., guix-commits, 2024/02/18
- 08/45: Partially revert gnu: python-matplotlib: Fix flaky Legend loc test., guix-commits, 2024/02/18
- 15/45: gnu: linux-pam: Add libxcrypt dependency., guix-commits, 2024/02/18
- 40/45: gnu: mailutils: Add libxcrypt dependency., guix-commits, 2024/02/18
- 07/45: gnu: cryptsetup-static: Fix static build., guix-commits, 2024/02/18
- 06/45: gnu: lvm2-static: Properly handle eudev dependency in pkg-config., guix-commits, 2024/02/18
- 02/45: gnu: Add libdevmapper-propagated-inputs., guix-commits, 2024/02/18
- 03/45: gnu: Add libcryptsetup-propagated-inputs., guix-commits, 2024/02/18
- 04/45: gnu: volume-key: Add required transitive dependencies.,
guix-commits <=
- 10/45: gnu: glibc: Update to 2.39., guix-commits, 2024/02/18
- 11/45: gnu: gcc: Simplify application of Hurd-specific pthread patch., guix-commits, 2024/02/18
- 39/45: gnu: also-utils: Adapt for glibc 2.39., guix-commits, 2024/02/18
- 36/45: gnu: python-natsort: Add en_US.UTF-8 locale for tests., guix-commits, 2024/02/18
- 32/45: gnu: cyrus-sasl: Add libxcrypt dependency., guix-commits, 2024/02/18
- 31/45: gnu: cups-minimal: Add libxcrypt dependency., guix-commits, 2024/02/18
- 14/45: gnu: python: Add libxcrypt dependency., guix-commits, 2024/02/18
- 38/45: gnu: accountsservice: Add libxcrypt dependency., guix-commits, 2024/02/18
- 26/45: gnu: apr: Update to 1.7.4., guix-commits, 2024/02/18
- 44/45: gnu: ldb: Remove reference to crypt., guix-commits, 2024/02/18