gnu: Add rust-gtk4-sys-0.8.

* gnu/packages/crates-gtk.scm (rust-gtk4-sys-0.8): New variable.
(rust-gtk4-sys-0.7): Intherit from rust-gtk4-sys-0.8.

Change-Id: Id31435c704b9163d77e8a4d8f017bc630ac1788a
This commit is contained in:
Giacomo Leidi 2024-11-06 21:41:29 +01:00 committed by Efraim Flashner
parent 1bc781e819
commit 3c646c72d9
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3304,8 +3304,43 @@ (define-public rust-gtk4-macros-0.7
(description "Macros helpers for GTK 4 bindings.")
(license license:expat)))
(define-public rust-gtk4-sys-0.8
(package
(name "rust-gtk4-sys")
(version "0.8.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "gtk4-sys" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1dapgvbkhf0kcm2jfmj8r98wzyhwmr5iv358dvb73sl5gxmsi2lc"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Can't find gtk/gtk-a11y.h from gtk+
#:cargo-inputs (("rust-cairo-sys-rs" ,rust-cairo-sys-rs-0.19)
("rust-gdk-pixbuf-sys" ,rust-gdk-pixbuf-sys-0.19)
("rust-gdk4-sys" ,rust-gdk4-sys-0.8)
("rust-gio-sys" ,rust-gio-sys-0.19)
("rust-glib-sys" ,rust-glib-sys-0.19)
("rust-gobject-sys" ,rust-gobject-sys-0.19)
("rust-graphene-sys" ,rust-graphene-sys-0.19)
("rust-gsk4-sys" ,rust-gsk4-sys-0.8)
("rust-libc" ,rust-libc-0.2)
("rust-pango-sys" ,rust-pango-sys-0.19)
("rust-system-deps" ,rust-system-deps-6))
#:cargo-development-inputs (("rust-shell-words" ,rust-shell-words-1)
("rust-tempfile" ,rust-tempfile-3))))
(native-inputs (list pkg-config))
(inputs (list cairo gdk-pixbuf graphene gtk pango))
(home-page "https://gtk-rs.org/")
(synopsis "FFI bindings of GTK 4")
(description "This package provides FFI bindings of GTK 4.")
(license license:expat)))
(define-public rust-gtk4-sys-0.7
(package
(inherit rust-gtk4-sys-0.8)
(name "rust-gtk4-sys")
(version "0.7.3")
(source
@ -3315,7 +3350,6 @@ (define-public rust-gtk4-sys-0.7
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1f2ylskyqkjdik9fij2m46pra4jagnif5xyalbxfk3334fmc9n2l"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Can't find gtk/gtk-a11y.h from gtk+
#:cargo-inputs (("rust-cairo-sys-rs" ,rust-cairo-sys-rs-0.18)
@ -3330,7 +3364,7 @@ (define-public rust-gtk4-sys-0.7
("rust-pango-sys" ,rust-pango-sys-0.18)
("rust-system-deps" ,rust-system-deps-6))
#:cargo-development-inputs (("rust-shell-words" ,rust-shell-words-1)
("rust-tempfile" ,rust-tempfile-3))))
("rust-tempfile" ,rust-tempfile-3))))))
(native-inputs (list pkg-config))
(inputs (list cairo gdk-pixbuf graphene gtk pango))
(home-page "https://gtk-rs.org/")