guix-commits
[Top][All Lists]
Advanced

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

08/22: gnu: Add rust-keccak-0.1.


From: guix-commits
Subject: 08/22: gnu: Add rust-keccak-0.1.
Date: Wed, 2 Dec 2020 15:54:42 -0500 (EST)

htgoebel pushed a commit to branch master
in repository guix.

commit 9e92105fc90b8174fd0e3a116197698d6731c6d2
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Mon Nov 16 21:35:15 2020 +0100

    gnu: Add rust-keccak-0.1.
    
    * gnu/packages/crates-io.scm (rust-keccak-0.1): New variable.
---
 gnu/packages/crates-io.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 2651de8..83b66ac 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -12983,6 +12983,24 @@ friction with idiomatic Rust structs to ease 
interopability.")
     (license (list license:asl2.0
                    license:expat))))
 
+(define-public rust-keccak-0.1
+  (package
+    (name "rust-keccak")
+    (version "0.1.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "keccak" version))
+        (file-name (string-append name "-" version ".tar.gz"))
+        (sha256
+          (base32 "19ybbvxrdk9yy65rk7f5ad0hcxszkjwph68yzkj3954lnir1bhk7"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page "https://crates.io/crates/keccak";)
+    (synopsis "Keccak-f sponge function for Rust")
+    (description "This package provides a keccak-f sponge function")
+    (license license:cc0)))
+
 (define-public rust-kernel32-sys-0.2
   (package
     (name "rust-kernel32-sys")



reply via email to

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