[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#56724] (No Subject)
From: |
Maya |
Subject: |
[bug#56724] (No Subject) |
Date: |
Sat, 23 Jul 2022 14:39:58 +0000 |
>
> On 23-07-2022 16:17, Maya via Guix-patches via wrote:
>
> > - `(("libudev" ,eudev))) +` (("python3" ,python)
> > + ("libudev" ,eudev)))
>
>
>
> Can be simplified to (list python eudev).
>
> Greetings,
> Maxime.
Yes, sorry, I didn't test that before. Here is the new version.
---
gnu/packages/security-token.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/security-token.scm b/gnu/packages/security-token.scm
index 74ea57137f..e70ba2ea95 100644
--- a/gnu/packages/security-token.scm
+++ b/gnu/packages/security-token.scm
@@ -242,7 +242,7 @@ (define-public pcsc-lite
(list perl ; for pod2man
pkg-config))
(inputs
- `(("libudev" ,eudev)))
+ (list python eudev))
(home-page "https://pcsclite.apdu.fr/")
(synopsis "Middleware to access a smart card using PC/SC")
(description
--
2.37.0
Regards,
Maya