[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#56724] [PATCH] gnu: Fix pcsc-lite missing input: python
From: |
Maya |
Subject: |
[bug#56724] [PATCH] gnu: Fix pcsc-lite missing input: python |
Date: |
Sat, 23 Jul 2022 14:17:59 +0000 |
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
- [bug#56724] [PATCH] gnu: Fix pcsc-lite missing input: python,
Maya <=