mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add pkcs11-helper.
* gnu/packages/security-token.scm (pkcs11-helper): New variable. Change-Id: Ib17e0cf209a6fe797d0c797829ba91091b719028 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
This commit is contained in:
parent
c3fe248e69
commit
d4118a34e3
1 changed files with 25 additions and 0 deletions
|
@ -394,6 +394,31 @@ (define-public opensc
|
||||||
#15 standard and the PKCS #11 API.")
|
#15 standard and the PKCS #11 API.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
|
|
||||||
|
(define-public pkcs11-helper
|
||||||
|
(package
|
||||||
|
(name "pkcs11-helper")
|
||||||
|
(version "1.30.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://github.com/OpenSC/pkcs11-helper/releases/download/pkcs11-helper-"
|
||||||
|
version "/pkcs11-helper-" version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1ac86jfj4qfwzbvsg6l9r4w4bbwxj2i9qi4dy1nz5aqcj6x1an2c"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs (list openssl pcsc-lite))
|
||||||
|
(native-inputs (list pkg-config))
|
||||||
|
(home-page "https://github.com/OpenSC/pkcs11-helper")
|
||||||
|
(synopsis "Library that simplifies the interaction with PKCS#11 providers")
|
||||||
|
(description
|
||||||
|
"Pkcs11-helper is a library that simplifies the interaction with
|
||||||
|
PKCS#11 providers for end-user applications. PKCS#11 is published standard.
|
||||||
|
PKCS#11 is the de-facto standard to access cryptographic devices")
|
||||||
|
(license (list license:gpl2 license:bsd-3))))
|
||||||
|
|
||||||
|
|
||||||
(define-public yubico-piv-tool
|
(define-public yubico-piv-tool
|
||||||
(package
|
(package
|
||||||
(name "yubico-piv-tool")
|
(name "yubico-piv-tool")
|
||||||
|
|
Loading…
Reference in a new issue