all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#56724] [PATCH] gnu: Fix pcsc-lite missing input: python
@ 2022-07-23 14:17 Maya via Guix-patches via
  2022-07-23 14:20 ` ( via Guix-patches via
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Maya via Guix-patches via @ 2022-07-23 14:17 UTC (permalink / raw)
  To: 56724

The pcsc-lite package had an dependency for pcsc-spy command. This command requires python3 to be executable. This was however not declared in inputs of this package.
---
 gnu/packages/security-token.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/security-token.scm b/gnu/packages/security-token.scm
index 74ea57137f..586e9cbc8d 100644
--- a/gnu/packages/security-token.scm
+++ b/gnu/packages/security-token.scm
@@ -242,7 +242,8 @@ (define-public pcsc-lite
      (list perl ; for pod2man
            pkg-config))
     (inputs
-     `(("libudev" ,eudev)))
+     `(("python3" ,python)
+       ("libudev" ,eudev)))
     (home-page "https://pcsclite.apdu.fr/")
     (synopsis "Middleware to access a smart card using PC/SC")
     (description
--
2.37.0




^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-07-23 17:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-23 14:17 [bug#56724] [PATCH] gnu: Fix pcsc-lite missing input: python Maya via Guix-patches via
2022-07-23 14:20 ` ( via Guix-patches via
2022-07-23 14:22 ` Maxime Devos
2022-07-23 14:39 ` [bug#56724] (No Subject) Maya via Guix-patches via
2022-07-23 17:45   ` bug#56724: " Marius Bakke

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.