unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Jordan Moore <lockbox@struct.foo>
To: 75127@debbugs.gnu.org
Cc: Jordan Moore <lockbox@struct.foo>,
	Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#75127] [PATCH v4 38/57] gnu: Add rust-zipsign-api-0.1.
Date: Sat,  4 Jan 2025 23:20:01 -0500	[thread overview]
Message-ID: <75d55dda0123187eb783365fb31d4f936dbdda41.1736050698.git.lockbox@struct.foo> (raw)
In-Reply-To: <cover.1736050696.git.lockbox@struct.foo>

* gnu/packages/crates-io.scm (rust-zipsign-api-0.1): New variable.

Change-Id: Ife5b751fbf59a6f3f593de51c2747ca254025457
---
 gnu/packages/crates-crypto.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index 8e2290ca99..28bf2f435d 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -17,6 +17,7 @@
 ;;; Copyright © 2023 VÖRÖSKŐI András <voroskoi@gmail.com>
 ;;; Copyright © 2024 Wilko Meyer <w@wmeyer.eu>
 ;;; Copyright © 2024 Herman Rimm <herman@rimm.ee>
+;;; Copyright © 2025 Jordan Moore <lockbox@struct.foo>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -48,6 +49,7 @@ (define-module (gnu packages crates-crypto)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages crates-apple)
   #:use-module (gnu packages crates-check)
+  #:use-module (gnu packages crates-compression)
   #:use-module (gnu packages crates-io)
   #:use-module (gnu packages crates-tls)
   #:use-module (gnu packages crates-windows)
@@ -6604,3 +6606,28 @@ (define-public rust-z85-3
      "This package provides a Rust implementation of @code{ZeroMQ's} Z85
 encoding mechanism with padding.")
     (license (list license:expat license:asl2.0))))
+
+(define-public rust-zipsign-api-0.1
+  (package
+    (name "rust-zipsign-api")
+    (version "0.1.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "zipsign-api" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0z30vzhhhd1va9z7ksdw8x8f6y8jb200h2ryk85wvnx9mm3aa4v4"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs (("rust-base64" ,rust-base64-0.22)
+                       ("rust-ed25519-dalek" ,rust-ed25519-dalek-2)
+                       ("rust-thiserror" ,rust-thiserror-1)
+                       ("rust-zip" ,rust-zip-2))))
+    (home-page "https://github.com/Kijewski/zipsign")
+    (synopsis
+     "Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key")
+    (description
+     "This package provides Sign and verify `.zip` and `.tar.gz` files with an
+ed25519 signing key.")
+    (license (list license:asl2.0))))
-- 
2.46.0





  parent reply	other threads:[~2025-01-05  4:22 UTC|newest]

Thread overview: 57+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <cover.1736050696.git.lockbox@struct.foo>
2025-01-05  4:19 ` [bug#75127] [PATCH v4 01/57] gnu: Add cargo-nextest Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 02/57] gnu: Add rust-enable-ansi-support-0.2 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 03/57] gnu: Add rust-guppy-0.17 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 04/57] gnu: Add rust-nextest-filtering-0.12 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 05/57] gnu: Add rust-nextest-workspace-hack-0.1 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 06/57] gnu: Add rust-nextest-metadata-0.12 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 07/57] gnu: Add rust-nextest-runner-0.70 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 08/57] gnu: Add rust-quick-junit-0.5 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 09/57] gnu: Add rust-swrite-0.1 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 10/57] gnu: Add rust-camino-tempfile-1 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 11/57] gnu: Add rust-debug-ignore-1 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 12/57] gnu: Add rust-guppy-summaries-0.7 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 13/57] gnu: Add rust-guppy-workspace-hack-0.1 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 14/57] gnu: Add rust-nested-0.1 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 15/57] gnu: Add rust-target-spec-3 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 16/57] gnu: Add rust-recursion-0.5 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 17/57] gnu: Add rust-test-strategy-0.4 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 18/57] gnu: Add rust-smol-str-0.3 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 19/57] gnu: Add rust-async-scoped-0.9 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 20/57] gnu: Add rust-atomicwrites-0.4 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 21/57] gnu: Add rust-config-0.14 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 22/57] gnu: Add rust-console-subscriber-0.4 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 23/57] gnu: Add rust-future-queue-0.3 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 24/57] gnu: Add rust-indent-write-2 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 25/57] gnu: Add rust-mukti-metadata-0.3 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 26/57] gnu: Add rust-newtype-uuid-1 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 27/57] gnu: Add rust-self-update-0.41 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 28/57] gnu: Add rust-target-spec-miette-0.4 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 29/57] gnu: Add rust-win32job-2 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 30/57] gnu: Add rust-diffus-0.10 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 31/57] gnu: Add rust-diffus-derive-0.10 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 32/57] gnu: Add rust-derive-builder-core-0.20 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 33/57] gnu: Add rust-derive-builder-macro-0.20 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 34/57] gnu: Add rust-structmeta-0.3 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 35/57] gnu: Add rust-structmeta-derive-0.3 Jordan Moore
2025-01-05  4:19 ` [bug#75127] [PATCH v4 36/57] gnu: Add rust-quick-xml-0.23 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 37/57] gnu: Add rust-self-replace-1 Jordan Moore
2025-01-05  4:20 ` Jordan Moore [this message]
2025-01-05  4:20 ` [bug#75127] [PATCH v4 39/57] gnu: Add rust-console-api-0.8 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 40/57] gnu: Add rust-tonic-web-0.12 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 41/57] gnu: Add rust-rust-ini-0.20 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 42/57] gnu: Add rust-yaml-rust2-0.8 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 43/57] gnu: Add rust-snake-case-0.3 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 44/57] gnu: rust-camino-1: Update to 1.1.9 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 45/57] gnu: rust-owo-colors-4: Update to 4.1.0 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 46/57] gnu: rust-pathdiff-0.2: Update to 0.2.3 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 47/57] gnu: rust-semver-1: Update to 1.0.24 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 48/57] gnu: rust-supports-color-3: Update to 3.0.2 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 49/57] gnu: rust-tracing-0.1: Update to 0.1.41 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 50/57] gnu: rust-tracing-subscriber-0.3: Update to 0.3.19 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 51/57] gnu: rust-petgraph-0.6: Update to 0.6.5 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 52/57] gnu: rust-indicatif-0.17: Update to 0.17.9 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 53/57] gnu: rust-pin-project-lite-0.2: Update to 0.2.15 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 54/57] gnu: rust-unicode-normalization-0.1: Update to 0.1.24 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 55/57] gnu: rust-tracing-attributes-0.1: Update to 0.1.28 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 56/57] gnu: rust-tracing-core-0.1: Update to 0.1.33 Jordan Moore
2025-01-05  4:20 ` [bug#75127] [PATCH v4 57/57] gnu: rust-cfg-expr-0.17: Update to 0.17.2 Jordan Moore

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=75d55dda0123187eb783365fb31d4f936dbdda41.1736050698.git.lockbox@struct.foo \
    --to=lockbox@struct.foo \
    --cc=75127@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    /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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).