gnu: rust-user32-sys-0.2: Move to (gnu packages crates-windows).
* gnu/packages/crates-io.scm (rust-user32-sys-0.2): Move from here ... * gnu/packages/crates-windows.scm: ... to here. Change-Id: Ibb805a990170200cbcb21c0b42aa90a6c04f3be2master
parent
d0ab4a2794
commit
ee772f7d1b
|
@ -80112,39 +80112,6 @@ comparable to calling @code{unwrap_err()}.")
|
||||||
encoding.")
|
encoding.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-user32-sys-0.2
|
|
||||||
(package
|
|
||||||
(name "rust-user32-sys")
|
|
||||||
(version "0.2.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "user32-sys" version))
|
|
||||||
(file-name
|
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0ivxc7hmsxax9crdhxdd1nqwik4s9lhb2x59lc8b88bv20fp3x2f"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-winapi" ,rust-winapi-0.2))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
(("rust-winapi-build" ,rust-winapi-build-0.1))
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'fix-cargo-toml
|
|
||||||
(lambda _
|
|
||||||
(substitute* "Cargo.toml"
|
|
||||||
((", path =.*}") "}"))
|
|
||||||
#t)))))
|
|
||||||
(home-page "https://github.com/retep998/winapi-rs")
|
|
||||||
(synopsis "Function definitions for the Windows API library user32")
|
|
||||||
(description
|
|
||||||
"Contains function definitions for the Windows API library user32.
|
|
||||||
See winapi for types and constants.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-users-0.11
|
(define-public rust-users-0.11
|
||||||
(package
|
(package
|
||||||
(name "rust-users")
|
(name "rust-users")
|
||||||
|
|
|
@ -634,6 +634,34 @@ server functionality.")
|
||||||
("rust-winapi" ,rust-winapi-0.2)
|
("rust-winapi" ,rust-winapi-0.2)
|
||||||
("rust-ws2-32-sys" ,rust-ws2-32-sys-0.2))))))
|
("rust-ws2-32-sys" ,rust-ws2-32-sys-0.2))))))
|
||||||
|
|
||||||
|
(define-public rust-user32-sys-0.2
|
||||||
|
(package
|
||||||
|
(name "rust-user32-sys")
|
||||||
|
(version "0.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "user32-sys" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0ivxc7hmsxax9crdhxdd1nqwik4s9lhb2x59lc8b88bv20fp3x2f"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-winapi" ,rust-winapi-0.2))
|
||||||
|
#:cargo-development-inputs (("rust-winapi-build" ,rust-winapi-build-0.1))
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-cargo-toml
|
||||||
|
(lambda _
|
||||||
|
(substitute* "Cargo.toml"
|
||||||
|
((", path =.*}")
|
||||||
|
"}")) #t)))))
|
||||||
|
(home-page "https://github.com/retep998/winapi-rs")
|
||||||
|
(synopsis "Function definitions for the Windows API library user32")
|
||||||
|
(description
|
||||||
|
"Contains function definitions for the Windows API library user32.
|
||||||
|
See winapi for types and constants.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-windows-0.48
|
(define-public rust-windows-0.48
|
||||||
(package
|
(package
|
||||||
(name "rust-windows")
|
(name "rust-windows")
|
||||||
|
|
Reference in New Issue