me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-commoncrypto-0.2.

* gnu/packages/crates-io.scm (rust-commoncrypto-0.2): New variable.
master
Maxim Cournoyer 2021-06-03 21:28:49 -04:00
parent aacc47eb4c
commit 0ededfaaad
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 25 additions and 0 deletions

View File

@ -8100,6 +8100,31 @@ library which provides Rust FFI bindings and idiomatic wrappers for Mac OS X's
CommonCrypto library.")
(license license:expat)))
(define-public rust-commoncrypto-0.2
(package
(name "rust-commoncrypto")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "commoncrypto" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"01whnqcziclsj1gwavvqhrw2r5cmwh00j2fbc56iwnm2ddcahmnh"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-clippy" ,rust-clippy-0.0)
("rust-commoncrypto-sys" ,rust-commoncrypto-sys-0.2))))
(home-page "https://github.com/malept/rust-commoncrypto")
(synopsis "Idiomatic Rust wrappers for Mac OS X's CommonCrypto library")
(description "The @{commoncrypto} library provides Rust FFI bindings and
idiomatic wrappers for Mac OS X's CommonCrypto library.")
(license license:expat)))
(define-public rust-common-path-1
(package
(name "rust-common-path")