me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-raw-window-handle-0.3.

* gnu/packages/crates-io.scm (rust-raw-window-handle-0.3):
New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Valentin Ignatev 2020-01-19 02:04:12 +03:00 committed by Efraim Flashner
parent 2cb32a3afe
commit 10975d5ce7
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -10809,6 +10809,28 @@ random number generators.")
#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.6))))))
(define-public rust-raw-window-handle-0.3
(package
(name "rust-raw-window-handle")
(version "0.3.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "raw-window-handle" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"04c2wir7qq3g2b143yav52a1g5ack8ffqx2bpmrn9bc0dix1li0a"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
(home-page "https://github.com/rust-windowing/raw-window-handle")
(synopsis "Interoperability library for Rust Windowing applications")
(description
"Interoperability library for Rust Windowing applications.")
(license license:expat)))
(define-public rust-rawpointer-0.1
(package
(name "rust-rawpointer")