diff options
author | Valentin Ignatev <valentignatev@gmail.com> | 2020-01-26 01:25:57 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-02-25 16:48:56 +0200 |
commit | 48748d53de47daae8f70595b8988bb7f711cf63a (patch) | |
tree | 1732ff38ca3ac2927f55ac756695b65c771d6001 | |
parent | def0676b0bbaa1fff2d5b0a18af172966bafbced (diff) | |
download | patches-48748d53de47daae8f70595b8988bb7f711cf63a.tar patches-48748d53de47daae8f70595b8988bb7f711cf63a.tar.gz |
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>
-rw-r--r-- | gnu/packages/crates-io.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 07e40c36e7..f813ef4b6e 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -16036,6 +16036,36 @@ fixed set of worker threads.") (license (list license:asl2.0 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 (package (name "rust-time") |