diff options
| author | André Batista <nandre@riseup.net> | 2025-07-18 13:49:31 -0300 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:30:26 +0200 |
| commit | bfcc3ea19ab18bb49c8bd05236deb1857b7e5e15 (patch) | |
| tree | caadd5d93a1a82add29411e209e879fdbab3d42d /gnu/packages/linux.scm | |
| parent | 6e62ec0c01ad0b7b345bd4f7f8f7ff4b978faa02 (diff) | |
gnu: ecryptfs-utils: Fix build.
Follow-up to commit 6c4520447049cafba7ab336cd27d2f87b10749fe ,
Change-Id: Ib48ae1b45f6c63edd620a932241f2aa57567a350, which replaced
cryptsetup for its minimal correlate but left a mismaching reference on
'patch-hardcoded-paths phase.
* gnu/packages/linux.scm (ecryptfs-utils)[arguments]<#:phases>:
On 'patch-hardcoded-paths, adjust reference to cryptsetup-minimal input.
Change-Id: I6048abcf8c7c65d8eba3a968015bccf82009d575
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/linux.scm')
| -rw-r--r-- | gnu/packages/linux.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 74ca0db312d..850378b0383 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -7970,7 +7970,7 @@ graphically visualizing a @file{perf.data} file.") (lambda* (#:key inputs outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out")) (util-linux (assoc-ref inputs "util-linux")) - (cryptsetup (assoc-ref inputs "cryptsetup")) + (cryptsetup (assoc-ref inputs "cryptsetup-minimal")) (linux-pam (assoc-ref inputs "linux-pam")) (lvm2 (assoc-ref inputs "lvm2"))) (substitute* '("src/utils/ecryptfs-mount-private" |
