all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Giacomo Leidi via Guix-patches via <guix-patches@gnu.org>
To: 70701@debbugs.gnu.org
Cc: Giacomo Leidi <goodoldpaul@autistici.org>,
	Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#70701] [PATCH v2 1/2] gnu: Add rust-pcsc-sys-1.
Date: Wed,  4 Sep 2024 22:58:36 +0200	[thread overview]
Message-ID: <67488c396aa945625927c8eb783fb7fe0bdfc8ae.1725483516.git.goodoldpaul@autistici.org> (raw)
In-Reply-To: <e4808431-815c-e991-642f-d640212d5f9f@autistici.org>

* gnu/packages/crates-io.scm (rust-pcsc-sys-1): New variable.

Change-Id: I22bbd64103cea09b86ba7cfab7a897d61d61ac7d
---
 gnu/packages/crates-io.scm | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 0cdb071ea0..c8a261225d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -2,7 +2,7 @@
 ;;; Copyright © 2019 Ivan Petkov <ivanppetkov@gmail.com>
 ;;; Copyright © 2019-2024 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2019-2024 Nicolas Goaziou <mail@nicolasgoaziou.fr>
-;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
+;;; Copyright © 2019, 2024 Giacomo Leidi <goodoldpaul@autistici.org>
 ;;; Copyright © 2019–2021 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2019, 2020 John Soo <jsoo1@asu.edu>
 ;;; Copyright © 2019, 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
@@ -114,6 +114,7 @@ (define-module (gnu packages crates-io)
   #:use-module (gnu packages python)
   #:use-module (gnu packages rust)
   #:use-module (gnu packages rust-apps)
+  #:use-module (gnu packages security-token)
   #:use-module (gnu packages selinux)
   #:use-module (gnu packages sequoia)
   #:use-module (gnu packages serialization)
@@ -52231,6 +52232,28 @@ (define-public rust-pcre2-sys-0.2
     (description "Low level bindings to PCRE2.")
     (license (list license:expat license:unlicense))))
 
+(define-public rust-pcsc-sys-1
+  (package
+    (name "rust-pcsc-sys")
+    (version "1.2.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "pcsc-sys" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "00vlrfv3kcr49ajbzzr1b4ls7g28f97mj9vdjdzick9c1yl9p7mh"))))
+    (build-system cargo-build-system)
+    (native-inputs (list pkg-config))
+    (inputs
+     (list pcsc-lite))
+    (arguments
+     `(#:cargo-inputs (("rust-pkg-config" ,rust-pkg-config-0.3))))
+    (home-page "https://github.com/bluetech/pcsc-rust")
+    (synopsis "Low-level bindings to the PC/SC C API")
+    (description "Low-level bindings to the PC/SC C API.")
+    (license license:expat)))
+
 (define-public rust-pdcurses-sys-0.7
   (package
     (name "rust-pdcurses-sys")

base-commit: 9a03ab25ba889be27b34d5cebea05d5ac3b0a033
-- 
2.45.2





  parent reply	other threads:[~2024-09-04 21:00 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-01 18:35 [bug#70701] Add rust-pcsc paul via Guix-patches via
2024-05-01 18:37 ` [bug#70701] [PATCH 1/2] gnu: Add rust-pcsc-sys-1 Giacomo Leidi via Guix-patches via
2024-05-01 18:37   ` [bug#70701] [PATCH 2/2] gnu: Add rust-pcsc-2 Giacomo Leidi via Guix-patches via
2024-09-04 19:23 ` [bug#70701] Add rust-pcsc paul via Guix-patches via
2024-09-04 20:58 ` Giacomo Leidi via Guix-patches via [this message]
2024-09-04 20:58   ` [bug#70701] [PATCH v2 2/2] gnu: Add rust-pcsc-2 Giacomo Leidi via Guix-patches via
2024-10-20 22:55 ` [bug#70701] Add rust-pcsc paul via Guix-patches via
2024-10-20 22:55 ` [bug#70701] [PATCH v2 1/2] gnu: Add rust-pcsc-sys-1 Giacomo Leidi via Guix-patches via
2024-10-20 22:55   ` [bug#70701] [PATCH v2 2/2] gnu: Add rust-pcsc-2 Giacomo Leidi via Guix-patches via
2024-10-21  5:20   ` bug#70701: [PATCH v2 1/2] gnu: Add rust-pcsc-sys-1 Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=67488c396aa945625927c8eb783fb7fe0bdfc8ae.1725483516.git.goodoldpaul@autistici.org \
    --to=guix-patches@gnu.org \
    --cc=70701@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    --cc=goodoldpaul@autistici.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.