3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add rust-shannon-0.2.

* gnu/packages/crates-io.scm (rust-shannon-0.2): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Steve George 2023-10-20 21:27:54 +01:00 committed by Efraim Flashner
parent 462af6da20
commit 96f279c7f2
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -63846,6 +63846,27 @@ and environment at run time. You can use this tool to check in production
exactly where a binary came from and how it was built.")
(license (list license:expat license:asl2.0))))
(define-public rust-shannon-0.2
(package
(name "rust-shannon")
(version "0.2.0")
(source (origin
(method url-fetch)
(uri (crate-uri "shannon" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0qa52zs4y1i87ysr11g9p6shpdagl14bb340gfm6rd97jhfb99by"))))
(build-system cargo-build-system)
(arguments
(list #:cargo-inputs `(("rust-byteorder" ,rust-byteorder-1))))
(home-page "https://docs.rs/shannon/0.2.0/shannon/")
(synopsis "Shannon cipher implementation")
(description
"A Shannon cipher implementation, that encrypts a message using a
shared secret key.")
(license license:expat)))
(define-public rust-sharded-slab-0.1
(package
(name "rust-sharded-slab")