mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add rust-gdi32-sys-0.2.
* gnu/packages/crates-io.scm (rust-gdi32-sys-0.2): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
7abd6eecbb
commit
f039fbabad
1 changed files with 26 additions and 0 deletions
|
@ -4804,6 +4804,32 @@ archive to be linked into Rustcode.")
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-gdi32-sys-0.2
|
||||
(package
|
||||
(name "rust-gdi32-sys")
|
||||
(version "0.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "gdi32-sys" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0605d4ngjsspghwjv4jicajich1gnl0aik9f880ajjzjixd524h9"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-winapi" ,rust-winapi-0.2))
|
||||
#:cargo-development-inputs
|
||||
(("rust-winapi-build" ,rust-winapi-build-0.1))))
|
||||
(home-page "https://github.com/retep998/winapi-rs")
|
||||
(synopsis "Function definitions for the Windows API library gdi32")
|
||||
(description "This package contains function definitions for the Windows
|
||||
API library @code{gdi32}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-generic-array-0.13
|
||||
(package
|
||||
(name "rust-generic-array")
|
||||
|
|
Loading…
Reference in a new issue