guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

25/31: gnu: Add rust-sequoia-keystore-backend-0.2.


From: guix-commits
Subject: 25/31: gnu: Add rust-sequoia-keystore-backend-0.2.
Date: Sun, 31 Mar 2024 14:27:55 -0400 (EDT)

efraim pushed a commit to branch rust-team
in repository guix.

commit 92de26661e0524496375dd325ceb0de710931227
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Mar 31 20:52:08 2024 +0300

    gnu: Add rust-sequoia-keystore-backend-0.2.
    
    * gnu/packages/sequoia.scm (rust-sequoia-keystore-backend-0.2): New
    variable.
    
    Change-Id: If6780fded250af4fc54c7d27acf52b96ff95a459
---
 gnu/packages/sequoia.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/sequoia.scm b/gnu/packages/sequoia.scm
index d51e276dba..c61820a2c4 100644
--- a/gnu/packages/sequoia.scm
+++ b/gnu/packages/sequoia.scm
@@ -186,6 +186,33 @@ than just headers; it requires tight integration with the 
MUA.")
      "This package provides interprocess communication infrastructure for 
Sequoia.")
     (license license:lgpl2.0+)))
 
+(define-public rust-sequoia-keystore-backend-0.2
+  (package
+    (name "rust-sequoia-keystore-backend")
+    (version "0.2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "sequoia-keystore-backend" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "07v6rc27v0di2v59mixshhc4fkkf1ig0yqkzgqz0v2si4z8slv3s"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:features '("sequoia-openpgp/crypto-nettle")
+       #:cargo-inputs (("rust-anyhow" ,rust-anyhow-1)
+                       ("rust-blanket" ,rust-blanket-0.3)
+                       ("rust-sequoia-openpgp" ,rust-sequoia-openpgp-1)
+                       ("rust-thiserror" ,rust-thiserror-1))
+       #:cargo-development-inputs
+       (("rust-sequoia-openpgp" ,rust-sequoia-openpgp-1))))
+    (native-inputs (list clang pkg-config))
+    (inputs (list nettle))
+    (home-page "https://sequoia-pgp.org/";)
+    (synopsis "Traits for private key store backends")
+    (description "This package contains traits for private key store 
backends.")
+    (license license:lgpl2.0+)))
+
 (define-public rust-sequoia-keystore-softkeys-0.2
   (package
     (name "rust-sequoia-keystore-softkeys")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]