me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-winreg-0.8.

* gnu/packages/crates-io.scm (rust-winreg-0.8): New variable.
(rust-winreg-0.7): Inherit from above.
master
Nicolas Goaziou 2021-06-08 10:28:46 +02:00
parent d0bd3b84b5
commit da7901f50d
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 26 additions and 7 deletions

View File

@ -50800,8 +50800,33 @@ trust these primitives.")
(description "Rust winpty bindings.")
(license license:expat)))
(define-public rust-winreg-0.8
(package
(name "rust-winreg")
(version "0.8.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "winreg" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1364vyx4kh170pxfg8iwlvv8xskvry53xfya0565q8qnx73gh1yi"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-chrono" ,rust-chrono-0.4)
("rust-serde" ,rust-serde-1)
("rust-winapi" ,rust-winapi-0.3))))
(home-page "https://github.com/gentoo90/winreg-rs")
(synopsis "Rust bindings to the MS Windows Registry API")
(description
"This package provides Rust bindings to MS Windows Registry API.")
(license license:expat)))
(define-public rust-winreg-0.7
(package
(inherit rust-winreg-0.8)
(name "rust-winreg")
(version "0.7.0")
(source
@ -50812,7 +50837,6 @@ trust these primitives.")
(sha256
(base32
"0sdxcyvda4v1v6a0k1j2v1400z3ng323k9a56gxvkq51x21dn801"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-chrono" ,rust-chrono-0.4)
@ -50820,12 +50844,7 @@ trust these primitives.")
("rust-winapi" ,rust-winapi-0.3))
#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.3)
("rust-serde-derive" ,rust-serde-derive-1))))
(home-page "https://github.com/gentoo90/winreg-rs")
(synopsis "Rust bindings to the MS Windows Registry API")
(description "This package provides Rust bindings to MS Windows Registry
API.")
(license license:expat)))
("rust-serde-derive" ,rust-serde-derive-1))))))
(define-public rust-winreg-0.6
(package