mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 02:07:56 +01:00
gnu: Add rust-gdk4-win32-0.7.
* gnu/packages/crates-gtk.scm (rust-gdk4-win32-0.7): New variable. Change-Id: I5c785a9d75af36a4cb4f38b8da640dacb908be8e Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
bc628f7ee6
commit
6ef633d12a
1 changed files with 30 additions and 0 deletions
|
@ -1332,6 +1332,36 @@ (define-public rust-gdk4-wayland-sys-0.7
|
|||
(description "This package provides FFI bindings of GDK4 Wayland.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-gdk4-win32-0.7
|
||||
(package
|
||||
(name "rust-gdk4-win32")
|
||||
(version "0.7.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "gdk4-win32" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0mv04mipl57v1lj94j2rkrk9qm75jvdlnp7qm6nl2kpn8466arpy"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
;; The system library `gtk4-win32` required by gtk4-win32-sys` was not found.
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs (("rust-gdk4" ,rust-gdk4-0.7)
|
||||
("rust-gdk4-win32-sys" ,rust-gdk4-win32-sys-0.7)
|
||||
("rust-gio" ,rust-gio-0.18)
|
||||
("rust-glib" ,rust-glib-0.18)
|
||||
("rust-khronos-egl" ,rust-khronos-egl-5)
|
||||
("rust-libc" ,rust-libc-0.2)
|
||||
("rust-windows" ,rust-windows-0.52))
|
||||
#:cargo-development-inputs
|
||||
(("rust-gir-format-check" ,rust-gir-format-check-0.1))))
|
||||
(home-page "https://gtk-rs.org/gtk4-rs")
|
||||
(synopsis "Rust bindings of the GDK4 Win32 library")
|
||||
(description
|
||||
"This package provides Rust bindings of the GDK4 Win32 library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-gdk4-win32-sys-0.7
|
||||
(package
|
||||
(name "rust-gdk4-win32-sys")
|
||||
|
|
Loading…
Reference in a new issue