mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-06 03:17:15 -05:00
gnu: Add rust-gif-0.12.
* gnu/packages/crates-graphics.scm (rust-gif-0.12): New variable. (rust-gif-0.11): Inherit from rust-gif-0.12. Change-Id: I012377ae1e7839aeeffb8df1970d98f8772bb968
This commit is contained in:
parent
84e64537c9
commit
6e4058fb0f
1 changed files with 26 additions and 6 deletions
|
@ -1149,8 +1149,33 @@ (define-public rust-gfx-core-0.9
|
||||||
(description "This package is a core library of Gfx-rs.")
|
(description "This package is a core library of Gfx-rs.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public rust-gif-0.12
|
||||||
|
(package
|
||||||
|
(name "rust-gif")
|
||||||
|
(version "0.12.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "gif" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0ibhjyrslfv9qm400gp4hd50v9ibva01j4ab9bwiq1aycy9jayc0"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; Not all files included.
|
||||||
|
#:cargo-inputs (("rust-color-quant" ,rust-color-quant-1)
|
||||||
|
("rust-weezl" ,rust-weezl-0.1))
|
||||||
|
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)
|
||||||
|
("rust-glob" ,rust-glob-0.3)
|
||||||
|
("rust-png" ,rust-png-0.17))))
|
||||||
|
(home-page "https://github.com/image-rs/image-gif")
|
||||||
|
(synopsis "GIF decoder and encoder")
|
||||||
|
(description "This package provides a GIF decoder and encoder in Rust.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-gif-0.11
|
(define-public rust-gif-0.11
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-gif-0.12)
|
||||||
(name "rust-gif")
|
(name "rust-gif")
|
||||||
(version "0.11.3")
|
(version "0.11.3")
|
||||||
(source
|
(source
|
||||||
|
@ -1160,16 +1185,11 @@ (define-public rust-gif-0.11
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0nsfd5qvp69z8kn17ziiq8zv4mclfycyxppf5k9fm2h8g1z1i9y3"))))
|
(base32 "0nsfd5qvp69z8kn17ziiq8zv4mclfycyxppf5k9fm2h8g1z1i9y3"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:skip-build? #t
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-color-quant" ,rust-color-quant-1)
|
(("rust-color-quant" ,rust-color-quant-1)
|
||||||
("rust-weezl" ,rust-weezl-0.1))))
|
("rust-weezl" ,rust-weezl-0.1))))))
|
||||||
(home-page "https://github.com/image-rs/image-gif")
|
|
||||||
(synopsis "GIF decoder and encoder")
|
|
||||||
(description "This package provides a GIF decoder and encoder in Rust.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-gif-0.10
|
(define-public rust-gif-0.10
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue