gnu: Add rust-image-0.24.

* gnu/packages/crates-graphics.scm (rust-image-0.24): New variable.
(rust-image-0.23): Inherit from rust-image-0.24.
This commit is contained in:
Efraim Flashner 2023-02-23 16:00:12 +02:00
parent 43d8c6b571
commit 1bbddd411e
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1259,8 +1259,54 @@ (define-public rust-ical-0.7
similar formats like VCard.") similar formats like VCard.")
(license license:asl2.0))) (license license:asl2.0)))
(define-public rust-image-0.24
(package
(name "rust-image")
(version "0.24.5")
(source (origin
(method url-fetch)
(uri (crate-uri "image" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0iarjrn9rimnri1g0hagdzljq3v9fy6gy7qlmz80yyskkfafmdv9"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ; Not all files included.
#:cargo-inputs
(("rust-bytemuck" ,rust-bytemuck-1)
("rust-byteorder" ,rust-byteorder-1)
("rust-color-quant" ,rust-color-quant-1)
("rust-dav1d" ,rust-dav1d-0.6)
("rust-dcv-color-primitives" ,rust-dcv-color-primitives-0.4)
("rust-exr" ,rust-exr-1)
("rust-gif" ,rust-gif-0.11)
("rust-jpeg-decoder" ,rust-jpeg-decoder-0.3)
("rust-mp4parse" ,rust-mp4parse-0.12)
("rust-num-rational" ,rust-num-rational-0.4)
("rust-num-traits" ,rust-num-traits-0.2)
("rust-png" ,rust-png-0.17)
("rust-ravif" ,rust-ravif-0.8)
("rust-rgb" ,rust-rgb-0.8)
("rust-scoped-threadpool" ,rust-scoped-threadpool-0.1)
("rust-tiff" ,rust-tiff-0.8)
("rust-webp" ,rust-webp-0.2))
#:cargo-development-inputs
(("rust-crc32fast" ,rust-crc32fast-1)
("rust-criterion" ,rust-criterion-0.3)
("rust-glob" ,rust-glob-0.3)
("rust-jpeg-decoder" ,rust-jpeg-decoder-0.3)
("rust-num-complex" ,rust-num-complex-0.4)
("rust-quickcheck" ,rust-quickcheck-1))))
(home-page "https://github.com/image-rs/image")
(synopsis "Imaging library written in Rust")
(description
"This package is an imaging library written in Rust. It provides basic
filters and decoders for the most common image formats.")
(license license:expat)))
(define-public rust-image-0.23 (define-public rust-image-0.23
(package (package
(inherit rust-image-0.24)
(name "rust-image") (name "rust-image")
(version "0.23.14") (version "0.23.14")
(source (source
@ -1270,7 +1316,6 @@ (define-public rust-image-0.23
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "18gn2f7xp30pf9aqka877knlq308khxqiwjvsccvzaa4f9zcpzr4")))) (base32 "18gn2f7xp30pf9aqka877knlq308khxqiwjvsccvzaa4f9zcpzr4"))))
(build-system cargo-build-system)
(arguments (arguments
`(#:skip-build? #t `(#:skip-build? #t
#:cargo-inputs #:cargo-inputs
@ -1286,13 +1331,7 @@ (define-public rust-image-0.23
("rust-ravif" ,rust-ravif-0.6) ("rust-ravif" ,rust-ravif-0.6)
("rust-rgb" ,rust-rgb-0.8) ("rust-rgb" ,rust-rgb-0.8)
("rust-scoped-threadpool" ,rust-scoped-threadpool-0.1) ("rust-scoped-threadpool" ,rust-scoped-threadpool-0.1)
("rust-tiff" ,rust-tiff-0.6)))) ("rust-tiff" ,rust-tiff-0.6))))))
(home-page "https://github.com/image-rs/image")
(synopsis "Imaging library written in Rust")
(description
"This package is an imaging library written in Rust. It provides basic
filters and decoders for the most common image formats.")
(license license:expat)))
(define-public rust-image-0.22 (define-public rust-image-0.22
(package (package