me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-subtle-1.0.

* gnu/packages/crates-io.scm (rust-subtle-1.0): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Valentin Ignatev 2020-01-15 03:35:43 +03:00 committed by Efraim Flashner
parent a3e4d7f4a8
commit fcbb77490c
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -12293,6 +12293,28 @@ and Jaro-Winkler.")
"Parse command line argument by defining a struct, derive crate.")
(license (list license:asl2.0 license:expat))))
(define-public rust-subtle-1.0
(package
(name "rust-subtle")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "subtle" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1vm80mxbwfj334izwm8x8l65v1xl9hr0kwrg36r1rq565fkaarrd"))))
(build-system cargo-build-system)
(home-page "https://dalek.rs/")
(synopsis
"Pure-Rust traits and utilities for cryptographic implementations")
(description
"This package provides Pure-Rust traits and utilities for constant-time
cryptographic implementations.")
(license license:bsd-3)))
(define-public rust-syn-1.0
(package
(name "rust-syn")