gnu: Add rust-winreg-0.6.
* gnu/packages/crates-io.scm (rust-winreg-0.6): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>master
parent
73a51ad01d
commit
2cb32a3afe
|
@ -16259,6 +16259,35 @@ color in a Windows console.")
|
|||
(license (list license:unlicense
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-winreg-0.6
|
||||
(package
|
||||
(name "rust-winreg")
|
||||
(version "0.6.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "winreg" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1jdcqr6zmvwyrp87h48miasfdvv16gjsb60rc8dy2kqwb3mnv65j"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-chrono" ,rust-chrono-0.4)
|
||||
("rust-serde" ,rust-serde-1.0)
|
||||
("rust-winapi" ,rust-winapi-0.3))
|
||||
#:cargo-development-inputs
|
||||
(("rust-rand" ,rust-rand-0.3)
|
||||
("rust-serde-derive" ,rust-serde-derive-1.0))))
|
||||
(home-page "https://github.com/gentoo90/winreg-rs")
|
||||
(synopsis "Rust bindings to MS Windows Registry API")
|
||||
(description
|
||||
"This package provides Rust bindings to MS Windows Registry API.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-winutil-0.1
|
||||
(package
|
||||
(name "rust-winutil")
|
||||
|
|
Reference in New Issue