gnu: rust-gfx-0.18: Update to 0.18.3.

* gnu/packages/crates-graphics.scm (rust-gfx-0.18): Update to 0.18.3.
[arguments]: Don't skip the build.

Change-Id: Ibf1960a69f83b78c7dfd1ac8db87308bfac05bac
This commit is contained in:
Efraim Flashner 2024-12-04 15:12:56 +02:00
parent 9439027212
commit 472b54e89e
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1523,24 +1523,21 @@ (define-public rust-fast-srgb8-1
(define-public rust-gfx-0.18
(package
(name "rust-gfx")
(version "0.18.2")
(version "0.18.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "gfx" version))
(file-name
(string-append name "-" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0nqmxqi3x4ni0g78g77a6aldrv8cfvzhnpqhxyd2ap4aa3wldph1"))))
(base32 "02lf16bgyvdk5imzw0r0xyxjrsyv2ficmf9kiarzvf5zx1bl0xgb"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-log" ,rust-log-0.4)
("rust-mint" ,rust-mint-0.5)
("rust-draw-state" ,rust-draw-state-0.8)
("rust-gfx-core" ,rust-gfx-core-0.9))))
`(#:cargo-inputs
(("rust-draw-state" ,rust-draw-state-0.8)
("rust-gfx-core" ,rust-gfx-core-0.9)
("rust-log" ,rust-log-0.4)
("rust-mint" ,rust-mint-0.5))))
(home-page "https://github.com/gfx-rs/gfx")
(synopsis "High-performance, bindless graphics API")
(description