me
/
guix
Archived
1
0
Fork 0

gnu: pcsc-lite: Update to 2.1.0.

* gnu/packages/security-token.scm (pcsc-lite): Update to 2.1.0.

Reviewed-by: Christina O'Donnell <cdo@mutix.org>

Change-Id: I133fd056afb84259cf5cb1f3e9c664ac336e50b9
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Arjan Adriaanse 2024-04-21 22:27:59 +01:00 committed by Nicolas Goaziou
parent 3bc4f32058
commit a8f0e8a31d
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 14 additions and 4 deletions

View File

@ -83,6 +83,7 @@
#:use-module (gnu packages tex)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages polkit)
#:use-module (gnu packages python)
#:use-module (gnu packages python-build)
#:use-module (gnu packages python-crypto)
@ -240,24 +241,33 @@ with a PKCS #11 Cryptographic Token Interface.")
(define-public pcsc-lite
(package
(name "pcsc-lite")
(version "1.9.8")
(version "2.1.0")
(source (origin
(method url-fetch)
(uri (string-append "https://pcsclite.apdu.fr/files/"
"pcsc-lite-" version ".tar.bz2"))
(sha256
(base32
"12923c6l5qzga1xlcxvm0vzbqrxnxq1qgzlrxf2y5gpcaz2q0bah"))))
"1aimbddk6jx828xrw1vg2g82i11v55inhr9jqhmixj24qwfbdjl5"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags '("--enable-usbdropdir=/var/lib/pcsc/drivers"
"--disable-libsystemd")))
"--disable-libsystemd")
#:phases ,#~(modify-phases %standard-phases
(add-after 'unpack 'set-policy-dir
(lambda _
(substitute* "configure"
(("polkit_policy_dir=.*")
(string-append "polkit_policy_dir=\""
#$output "/share/polkit-1/actions\""))))))))
(native-inputs
(list flex
perl ;for pod2man
pkg-config))
(inputs
(list python eudev))
(list python
eudev
polkit))
(home-page "https://pcsclite.apdu.fr/")
(synopsis "Middleware to access a smart card using PC/SC")
(description