gnu: Add rust-glib-sys-0.18.

* gnu/packages/crates-gtk.scm (rust-glib-sys-0.18): New variable.
(rust-glib-sys-0.17): Inherit from rust-glib-sys-0.18.

Change-Id: Idd194b6771e5e5f953c3537c5672945b6c9e6fcc
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Sergio Pastor Pérez 2023-11-28 22:11:40 +01:00 committed by Efraim Flashner
parent e2cf93aaa8
commit 783c7bb094
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -4,6 +4,7 @@
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com> ;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org> ;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org>
;;; Copyright © 2023 Steve George <steve@futurile.net> ;;; Copyright © 2023 Steve George <steve@futurile.net>
;;; Copyright © 2023 Sergio Pastor Pérez <sergio.pastorperez@outlook.es>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -1466,17 +1467,17 @@ (define-public rust-glib-macros-0.10
("rust-quote" ,rust-quote-1) ("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1)))))) ("rust-syn" ,rust-syn-1))))))
(define-public rust-glib-sys-0.17 (define-public rust-glib-sys-0.18
(package (package
(name "rust-glib-sys") (name "rust-glib-sys")
(version "0.17.10") (version "0.18.1")
(source (origin (source
(method url-fetch) (origin
(uri (crate-uri "glib-sys" version)) (method url-fetch)
(file-name (string-append name "-" version ".tar.gz")) (uri (crate-uri "glib-sys" version))
(sha256 (file-name (string-append name "-" version ".tar.gz"))
(base32 (sha256
"1w64ppa12s9ky6gfdaqhq9w30ad6hskll812jb3sl2xsggmac2nq")))) (base32 "164qhsfmlzd5mhyxs8123jzbdfldwxbikfpq5cysj3lddbmy4g06"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(;; XXX: Tests are sensitive to the version of glib, even though `(;; XXX: Tests are sensitive to the version of glib, even though
@ -1488,15 +1489,26 @@ (define-public rust-glib-sys-0.17
#:cargo-development-inputs #:cargo-development-inputs
(("rust-shell-words" ,rust-shell-words-1) (("rust-shell-words" ,rust-shell-words-1)
("rust-tempfile" ,rust-tempfile-3)))) ("rust-tempfile" ,rust-tempfile-3))))
(native-inputs (native-inputs (list pkg-config))
(list pkg-config)) (inputs (list glib))
(inputs
(list glib))
(home-page "https://gtk-rs.org/") (home-page "https://gtk-rs.org/")
(synopsis "FFI bindings to libglib-2.0") (synopsis "FFI bindings to libglib-2.0")
(description "This package provides FFI bindings to libglib-2.0.") (description "This package provides FFI bindings to libglib-2.0.")
(license license:expat))) (license license:expat)))
(define-public rust-glib-sys-0.17
(package
(inherit rust-glib-sys-0.18)
(name "rust-glib-sys")
(version "0.17.10")
(source (origin
(method url-fetch)
(uri (crate-uri "glib-sys" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1w64ppa12s9ky6gfdaqhq9w30ad6hskll812jb3sl2xsggmac2nq"))))))
(define-public rust-glib-sys-0.15 (define-public rust-glib-sys-0.15
(package (package
(inherit rust-glib-sys-0.17) (inherit rust-glib-sys-0.17)