guix-commits
[Top][All Lists]
Advanced

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

14/113: gnu: rust-orion-0.17: Move to (gnu packages crates-crypto).


From: guix-commits
Subject: 14/113: gnu: rust-orion-0.17: Move to (gnu packages crates-crypto).
Date: Mon, 22 Jan 2024 04:30:07 -0500 (EST)

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

commit dfb3d7972e422cdd1847ed416b4415ae7335e88a
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Jan 21 15:23:02 2024 +0200

    gnu: rust-orion-0.17: Move to (gnu packages crates-crypto).
    
    * gnu/packages/crates-io.scm (rust-orion-0.17): Move from here ...
    * gnu/packages/crates-crypto.scm: ... to here.
    
    Change-Id: Ic2ee47bffc0992fb9a58fb00b8b1412e9fc2ac83
---
 gnu/packages/crates-crypto.scm | 34 ++++++++++++++++++++++++++++++++++
 gnu/packages/crates-io.scm     | 34 ----------------------------------
 2 files changed, 34 insertions(+), 34 deletions(-)

diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index 68c2f531e3..10d7df870f 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -1706,3 +1706,37 @@ cryptographic library.")
 cryptographic library.")
     (license ;; licensed under either of these, at your option
      (list license:lgpl3 license:gpl2 license:gpl3))))
+
+(define-public rust-orion-0.17
+  (package
+    (name "rust-orion")
+    (version "0.17.4")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "orion" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0ri0b0vyd9vqwlzlcv0q4i7r9pga23q7nnnvd5z4zycjc9v4mryb"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-ct-codecs" ,rust-ct-codecs-1)
+        ("rust-fiat-crypto" ,rust-fiat-crypto-0.1)
+        ("rust-getrandom" ,rust-getrandom-0.2)
+        ("rust-serde" ,rust-serde-1)
+        ("rust-subtle" ,rust-subtle-2)
+        ("rust-zeroize" ,rust-zeroize-1))
+       #:cargo-development-inputs
+       (("rust-criterion" ,rust-criterion-0.4)
+        ("rust-hex" ,rust-hex-0.4)
+        ("rust-quickcheck" ,rust-quickcheck-1)
+        ("rust-quickcheck-macros" ,rust-quickcheck-macros-1)
+        ("rust-serde" ,rust-serde-1)
+        ("rust-serde-json" ,rust-serde-json-1))))
+    (home-page "https://github.com/orion-rs/orion";)
+    (synopsis "Pure-Rust crypto")
+    (description
+     "Orion is a cryptography library written in pure Rust.  It aims to provide
+easy and usable crypto while trying to minimize the use of unsafe code.")
+    (license license:expat)))
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index b0b7d7de70..f1b5593dae 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -45673,40 +45673,6 @@ under its new name.")
      "This package provides a Rust library for parsing orgmode files.")
     (license license:expat)))
 
-(define-public rust-orion-0.17
-  (package
-    (name "rust-orion")
-    (version "0.17.4")
-    (source (origin
-              (method url-fetch)
-              (uri (crate-uri "orion" version))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "0ri0b0vyd9vqwlzlcv0q4i7r9pga23q7nnnvd5z4zycjc9v4mryb"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-inputs
-       (("rust-ct-codecs" ,rust-ct-codecs-1)
-        ("rust-fiat-crypto" ,rust-fiat-crypto-0.1)
-        ("rust-getrandom" ,rust-getrandom-0.2)
-        ("rust-serde" ,rust-serde-1)
-        ("rust-subtle" ,rust-subtle-2)
-        ("rust-zeroize" ,rust-zeroize-1))
-       #:cargo-development-inputs
-       (("rust-criterion" ,rust-criterion-0.4)
-        ("rust-hex" ,rust-hex-0.4)
-        ("rust-quickcheck" ,rust-quickcheck-1)
-        ("rust-quickcheck-macros" ,rust-quickcheck-macros-1)
-        ("rust-serde" ,rust-serde-1)
-        ("rust-serde-json" ,rust-serde-json-1))))
-    (home-page "https://github.com/orion-rs/orion";)
-    (synopsis "Pure-Rust crypto")
-    (description
-     "Orion is a cryptography library written in pure Rust.  It aims to provide
-easy and usable crypto while trying to minimize the use of unsafe code.")
-    (license license:expat)))
-
 (define-public rust-os-info-3
   (package
     (name "rust-os-info")



reply via email to

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