mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-03 18:09:18 -05: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:
parent
462af6da20
commit
96f279c7f2
1 changed files with 21 additions and 0 deletions
|
@ -63846,6 +63846,27 @@ (define-public rust-shadow-rs-0.8
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue