mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 14:47:20 +01:00
gnu: Add rust-image-0.22.
* gnu/packages/crates-io.scm (rust-image-0.22): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
9fba0256cb
commit
4aaa7e13d9
1 changed files with 38 additions and 0 deletions
|
@ -6775,6 +6775,44 @@ (define-public rust-ignore-0.4
|
|||
ignore files such as .gitignore against file paths.")
|
||||
(license (list license:unlicense license:expat))))
|
||||
|
||||
(define-public rust-image-0.22
|
||||
(package
|
||||
(name "rust-image")
|
||||
(version "0.22.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "image" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0jpbd0p1q7xx6395ba9ikz2k4cfp26qczisa8m2v15w3hzd2mv88"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; Some test images are missing from the release.
|
||||
#:cargo-inputs
|
||||
(("rust-byteorder" ,rust-byteorder-1.3)
|
||||
("rust-gif" ,rust-gif-0.10)
|
||||
("rust-jpeg-decoder" ,rust-jpeg-decoder-0.1)
|
||||
("rust-num-iter" ,rust-num-iter-0.1)
|
||||
("rust-num-rational" ,rust-num-rational-0.2)
|
||||
("rust-num-traits" ,rust-num-traits-0.2)
|
||||
("rust-png" ,rust-png-0.15)
|
||||
("rust-scoped-threadpool" ,rust-scoped-threadpool-0.1)
|
||||
("rust-tiff" ,rust-tiff-0.3))
|
||||
#:cargo-development-inputs
|
||||
(("rust-crc32fast" ,rust-crc32fast-1.2)
|
||||
("rust-glob" ,rust-glob-0.3)
|
||||
("rust-num-complex" ,rust-num-complex-0.2)
|
||||
("rust-quickcheck" ,rust-quickcheck-0.9))))
|
||||
(home-page "https://github.com/image-rs/image")
|
||||
(synopsis "Imaging library written in Rust")
|
||||
(description
|
||||
"Imaging library written in Rust. Provides basic filters and decoders
|
||||
for the most common image formats.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-indexmap-1.0
|
||||
(package
|
||||
(name "rust-indexmap")
|
||||
|
|
Loading…
Reference in a new issue