gnu: Add rust-tiff-0.3.
* gnu/packages/crates-io.scm (rust-tiff-0.3): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
def0676b0b
commit
48748d53de
1 changed files with 30 additions and 0 deletions
|
@ -16036,6 +16036,36 @@ fixed set of worker threads.")
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-tiff-0.3
|
||||||
|
(package
|
||||||
|
(name "rust-tiff")
|
||||||
|
(version "0.3.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "tiff" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0zgmbny2f8rssqmjdfvnysy0vqwcvlwl6q9f5yixhavlqk7w5dyp"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; Tests images not included with release.
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-byteorder" ,rust-byteorder-1.3)
|
||||||
|
("rust-lzw" ,rust-lzw-0.10)
|
||||||
|
("rust-num-derive" ,rust-num-derive-0.2)
|
||||||
|
("rust-num-traits" ,rust-num-traits-0.2))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-tempfile" ,rust-tempfile-3.0))))
|
||||||
|
(home-page "https://github.com/image-rs/image-tiff")
|
||||||
|
(synopsis
|
||||||
|
"TIFF decoding and encoding library in pure Rust")
|
||||||
|
(description
|
||||||
|
"TIFF decoding and encoding library in pure Rust.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-time-0.1
|
(define-public rust-time-0.1
|
||||||
(package
|
(package
|
||||||
(name "rust-time")
|
(name "rust-time")
|
||||||
|
|
Reference in a new issue