mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: pam-mount: Fix libcryptsetup detection.
* gnu/packages/admin.scm (pam-mount): Fix libcryptsetup detection. [inputs]: Add extra inputs required for libcryptsetup, remove duplicates. [arguments]<#:configure-flags>: Explicitly enable cryptsetup in order to detect breakage in the future. Change-Id: Icf588945279c8785081a8049d401eaf7e6a22e3c Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
This commit is contained in:
parent
94e0028d6f
commit
2c5bcb1f30
1 changed files with 13 additions and 10 deletions
|
@ -68,6 +68,8 @@
|
||||||
;;; Copyright © 2024 gemmaro <gemmaro.dev@gmail.com>
|
;;; Copyright © 2024 gemmaro <gemmaro.dev@gmail.com>
|
||||||
;;; Copyright © 2024 Richard Sent <richard@freakingpenguin.com>
|
;;; Copyright © 2024 Richard Sent <richard@freakingpenguin.com>
|
||||||
;;; Copyright © 2024 Vinicius Monego <monego@posteo.net>
|
;;; Copyright © 2024 Vinicius Monego <monego@posteo.net>
|
||||||
|
;;; Copyright © 2024 nathan <nathan_mail@nborghese.com>
|
||||||
|
;;; Copyright © 2024 Nikita Domnitskii <nikita@domnitskii.me>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -4916,7 +4918,8 @@ tcpdump and snoop.")
|
||||||
(list
|
(list
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
#~(list (string-append "--with-slibdir=" #$output "/lib")
|
#~(list (string-append "--with-slibdir=" #$output "/lib")
|
||||||
(string-append "--with-ssbindir=" #$output "/sbin"))
|
(string-append "--with-ssbindir=" #$output "/sbin")
|
||||||
|
"--with-cryptsetup")
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-file-names
|
(add-after 'unpack 'patch-file-names
|
||||||
|
@ -4945,15 +4948,15 @@ tcpdump and snoop.")
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list perl pkg-config))
|
(list perl pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
(list cryptsetup
|
(append
|
||||||
libhx
|
(cons cryptsetup (libcryptsetup-propagated-inputs))
|
||||||
|
(list libhx
|
||||||
libxml2
|
libxml2
|
||||||
linux-pam
|
linux-pam
|
||||||
lvm2
|
|
||||||
openssl
|
openssl
|
||||||
pcre2
|
pcre2
|
||||||
`(,util-linux "lib")
|
util-linux
|
||||||
util-linux))
|
eudev)))
|
||||||
(home-page "https://inai.de/projects/pam_mount/")
|
(home-page "https://inai.de/projects/pam_mount/")
|
||||||
(synopsis "PAM module to mount volumes for a user session")
|
(synopsis "PAM module to mount volumes for a user session")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue