guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#78188] [PATCH] gnu: kwallet-pam: Fix socat not in 'libexec/pam_kwal


From: Z572
Subject: [bug#78188] [PATCH] gnu: kwallet-pam: Fix socat not in 'libexec/pam_kwallet_init' wrapper path.
Date: Fri, 02 May 2025 00:34:52 +0800
User-agent: mu4e 1.12.9; emacs 30.0.92

Sergio Pastor Pérez <sergio.pastorperez@gmail.com> writes:

> * gnu/packages/kde-plasma.scm (kwallet-pam)[phase]: Wrapper phase not setting
> PATH variable to access 'socat' input.
>
> Change-Id: I6e7a421af3dbbc844e319b7852246c89d979609c
> ---
>  gnu/packages/kde-plasma.scm | 14 +++++++++++---
>  1 file changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm
> index 679a68cef6..a15f7ad8a2 100644
> --- a/gnu/packages/kde-plasma.scm
> +++ b/gnu/packages/kde-plasma.scm
> @@ -1303,9 +1303,17 @@ (define-public kwallet-pam
>                  "0dif5y7qbayb2yfgl7940978ayyir948kpjavczvgkr70czb293k"))))
>      (build-system qt-build-system)
>      (arguments
> -     (list
> -      #:qtbase qtbase
> -      #:tests? #f)) ;no tests
> +     `(#:qtbase ,qtbase
> +       #:tests? #f ;no tests
> +       #:phases
> +       (modify-phases %standard-phases

please use gexp.

> +         (add-after 'install 'wrap-program
> +           (lambda* (#:key inputs outputs #:allow-other-keys)
> +             (let ((socat (search-input-file inputs "bin/socat")))
> +               (wrap-program (search-input-file outputs
> +                              "libexec/pam_kwallet_init")
> +                 `("PATH" ":" prefix
> +                   ,(list (dirname socat))))))))))

This is just a sh script, I prefer to replace socat in the
pam_kwallet_init file after unpack


>      (native-inputs (list extra-cmake-modules pkg-config))
>      (inputs (list linux-pam kwallet libgcrypt socat))
>      (synopsis "PAM Integration with KWallet")

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]