guix-commits
[Top][All Lists]
Advanced

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

42/113: gnu: rust-stream-cipher: Move to (gnu packages crates-crypto).


From: guix-commits
Subject: 42/113: gnu: rust-stream-cipher: Move to (gnu packages crates-crypto).
Date: Mon, 22 Jan 2024 04:30:23 -0500 (EST)

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

commit 76c165d314c81278a3e47de90349062e3c8dd623
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Jan 21 17:22:28 2024 +0200

    gnu: rust-stream-cipher: Move to (gnu packages crates-crypto).
    
    * gnu/packages/crates-io.scm (rust-stream-cipher-0.4,
    rust-stream-cipher-0.3): Move from here ...
    * gnu/packages/crates-crypto.scm: ... to here.
    
    Change-Id: I2dffa30a774737d4fccce56992e12a05436c5bca
---
 gnu/packages/crates-crypto.scm | 43 ++++++++++++++++++++++++++++++++++++++++++
 gnu/packages/crates-io.scm     | 43 ------------------------------------------
 2 files changed, 43 insertions(+), 43 deletions(-)

diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index a42b49b3b3..0d87683cab 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -4483,6 +4483,49 @@ OIDs)")
         (base32 "0ckgkcg6db5y94dqhmyikgn8yrsah6pyf4j197hv1c51bp0s00aw"))))
     (arguments `(#:skip-build? #t #:cargo-inputs (("rust-der" 
,rust-der-0.4))))))
 
+(define-public rust-stream-cipher-0.4
+  (package
+    (name "rust-stream-cipher")
+    (version "0.4.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "stream-cipher" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "120y04k3d2jyfnvyrlf38x6bf0yckyk30c7zf8v8qaq4fjcyvy09"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-blobby" ,rust-blobby-0.1)
+        ("rust-block-cipher" ,rust-block-cipher-0.7)
+        ("rust-generic-array" ,rust-generic-array-0.14))))
+    (home-page "https://github.com/RustCrypto/traits";)
+    (synopsis "Stream cipher traits")
+    (description "This package provides stream cipher traits.")
+    (license (list license:expat license:asl2.0))))
+
+(define-public rust-stream-cipher-0.3
+  (package
+    (inherit rust-stream-cipher-0.4)
+    (name "rust-stream-cipher")
+    (version "0.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "stream-cipher" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1g1nd8r6pph70rzk5yyvg7a9ji7pkap9ddiqpp4v9xa9ys0bqqc8"))))
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs
+       (("rust-blobby" ,rust-blobby-0.1)
+        ("rust-generic-array" ,rust-generic-array-0.13))))))
+
 (define-public rust-subtle-2
   (package
     (name "rust-subtle")
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index ca4597393a..ff4a4349f8 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -66310,49 +66310,6 @@ UTF-8.")
     (description "This package provides a static string buffer.")
     (license license:boost1.0)))
 
-(define-public rust-stream-cipher-0.4
-  (package
-    (name "rust-stream-cipher")
-    (version "0.4.1")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "stream-cipher" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32
-         "120y04k3d2jyfnvyrlf38x6bf0yckyk30c7zf8v8qaq4fjcyvy09"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-inputs
-       (("rust-blobby" ,rust-blobby-0.1)
-        ("rust-block-cipher" ,rust-block-cipher-0.7)
-        ("rust-generic-array" ,rust-generic-array-0.14))))
-    (home-page "https://github.com/RustCrypto/traits";)
-    (synopsis "Stream cipher traits")
-    (description "This package provides stream cipher traits.")
-    (license (list license:expat license:asl2.0))))
-
-(define-public rust-stream-cipher-0.3
-  (package
-    (inherit rust-stream-cipher-0.4)
-    (name "rust-stream-cipher")
-    (version "0.3.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "stream-cipher" version))
-       (file-name
-        (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32
-         "1g1nd8r6pph70rzk5yyvg7a9ji7pkap9ddiqpp4v9xa9ys0bqqc8"))))
-    (arguments
-     `(#:skip-build? #t
-       #:cargo-inputs
-       (("rust-blobby" ,rust-blobby-0.1)
-        ("rust-generic-array" ,rust-generic-array-0.13))))))
-
 (define-public rust-streaming-decompression-0.1
   (package
     (name "rust-streaming-decompression")



reply via email to

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