gnu: Add rust-card-backend-0.2.

* gnu/packages/sequoia.scm (rust-card-backend-0.2): New variable.

Change-Id: I94904d28d594aea0c24d31eaf44f5beab1d86132
This commit is contained in:
Efraim Flashner 2024-09-22 21:30:23 +03:00
parent 65ebec369f
commit abc9f49abf
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -42,6 +42,27 @@ (define-module (gnu packages sequoia)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages tls))
(define-public rust-card-backend-0.2
(package
(name "rust-card-backend")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "card-backend" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1ra2zfcs0n4msw4j0hmv8f3bpfz49x5c704i93f6a844k2if6gmx"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-thiserror" ,rust-thiserror-1))))
(home-page "https://gitlab.com/openpgp-card/openpgp-card")
(synopsis "Card backend trait, for use with the openpgp-card crate")
(description
"This package provides the card backend trait, for use with the
openpgp-card crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-card-backend-pcsc-0.5
(package
(name "rust-card-backend-pcsc")