guix-commits
[Top][All Lists]
Advanced

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

25/113: gnu: rust-tiger-0.1: Move to (gnu packages crates-crypto).


From: guix-commits
Subject: 25/113: gnu: rust-tiger-0.1: Move to (gnu packages crates-crypto).
Date: Mon, 22 Jan 2024 04:30:12 -0500 (EST)

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

commit dea9ce9a53625eaff1fea11ee2f4ad38bd53eecd
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Jan 21 15:46:00 2024 +0200

    gnu: rust-tiger-0.1: Move to (gnu packages crates-crypto).
    
    * gnu/packages/crates-io.scm (rust-tiger-0.1): Move from here ...
    * gnu/packages/crates-crypto.scm: ... to here.
    
    Change-Id: I1dc81d0abd741d208df4f7fa96c8e69ae7b5b1e6
---
 gnu/packages/crates-crypto.scm | 27 +++++++++++++++++++++++++++
 gnu/packages/crates-io.scm     | 27 ---------------------------
 2 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index 1d14a14251..36693d5212 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -3454,3 +3454,30 @@ cryptographic implementations.")
      "This package provides pure-Rust traits and utilities for constant-time
 cryptographic implementations.")
     (license license:bsd-3)))
+
+(define-public rust-tiger-0.1
+  (package
+    (name "rust-tiger")
+    (version "0.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "tiger" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "01bhc7h8kxc5kjqx9sqrb3g8h4f9av6hpxzyihjq7pprphf56gj4"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-block-buffer" ,rust-block-buffer-0.9)
+        ("rust-byteorder" ,rust-byteorder-1)
+        ("rust-digest" ,rust-digest-0.9))
+       #:cargo-development-inputs
+       (("rust-digest" ,rust-digest-0.9)
+        ("rust-hex-literal" ,rust-hex-literal-0.2))))
+    (home-page "https://github.com/RustCrypto/hashes";)
+    (synopsis "Tiger hash function")
+    (description
+     "This package provides the Tiger cryptographic hash function.")
+    (license (list license:expat license:asl2.0))))
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index d285bce2ac..f2e2eb774b 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -72780,33 +72780,6 @@ fixed set of worker threads.")
      "This crate provides Rust bindings for the Apache Thrift RPC system.")
     (license license:asl2.0)))
 
-(define-public rust-tiger-0.1
-  (package
-    (name "rust-tiger")
-    (version "0.1.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "tiger" version))
-       (file-name
-        (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32 "01bhc7h8kxc5kjqx9sqrb3g8h4f9av6hpxzyihjq7pprphf56gj4"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-inputs
-       (("rust-block-buffer" ,rust-block-buffer-0.9)
-        ("rust-byteorder" ,rust-byteorder-1)
-        ("rust-digest" ,rust-digest-0.9))
-       #:cargo-development-inputs
-       (("rust-digest" ,rust-digest-0.9)
-        ("rust-hex-literal" ,rust-hex-literal-0.2))))
-    (home-page "https://github.com/RustCrypto/hashes";)
-    (synopsis "Tiger hash function")
-    (description
-     "This package provides the Tiger cryptographic hash function.")
-    (license (list license:expat license:asl2.0))))
-
 (define-public rust-tikv-jemalloc-sys-0.4
   (package
     (name "rust-tikv-jemalloc-sys")



reply via email to

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