mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: rust-png: Add 0.17.
* gnu/packages/crates-graphics.scm (rust-png-0.17): New variable. (rust-png-0.16): Inherit from it.
This commit is contained in:
parent
1160932ea0
commit
4059158e6a
1 changed files with 35 additions and 7 deletions
|
@ -12,6 +12,7 @@
|
||||||
;;; Copyright © 2020 Antoine Côté <antoine.cote@posteo.net>
|
;;; Copyright © 2020 Antoine Côté <antoine.cote@posteo.net>
|
||||||
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2021 Zheng Junjie <873216071@qq.com>
|
;;; Copyright © 2021 Zheng Junjie <873216071@qq.com>
|
||||||
|
;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -2004,8 +2005,41 @@ (define-public rust-pistoncore-window-0.44
|
||||||
"This package provides a library for window abstraction.")
|
"This package provides a library for window abstraction.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-png-0.17
|
||||||
|
(package
|
||||||
|
(name "rust-png")
|
||||||
|
(version "0.17.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "png" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1fp3vnaxmjdv71dcakc21k07ir5s31dlx1mrazfqddzgaynw0f6w"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #false ;XXX missing files in tarball
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-bitflags" ,rust-bitflags-1)
|
||||||
|
("rust-crc32fast" ,rust-crc32fast-1)
|
||||||
|
("rust-deflate" ,rust-deflate-1)
|
||||||
|
("rust-miniz-oxide" ,rust-miniz-oxide-0.5))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-criterion" ,rust-criterion-0.3)
|
||||||
|
("rust-getopts" ,rust-getopts-0.2)
|
||||||
|
("rust-glium" ,rust-glium-0.31)
|
||||||
|
("rust-glob" ,rust-glob-0.3)
|
||||||
|
("rust-rand" ,rust-rand-0.8)
|
||||||
|
("rust-term" ,rust-term-0.7))))
|
||||||
|
(home-page "https://github.com/image-rs/image-png")
|
||||||
|
(synopsis "PNG decoding and encoding library in pure Rust")
|
||||||
|
(description
|
||||||
|
"This package is a PNG decoding and encoding library in pure Rust.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-png-0.16
|
(define-public rust-png-0.16
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-png-0.17)
|
||||||
(name "rust-png")
|
(name "rust-png")
|
||||||
(version "0.16.8")
|
(version "0.16.8")
|
||||||
(source
|
(source
|
||||||
|
@ -2015,19 +2049,13 @@ (define-public rust-png-0.16
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1ipl44q3vy4kvx6j296vk7d4v8gvcg203lrkvvixwixq1j98fciw"))))
|
(base32 "1ipl44q3vy4kvx6j296vk7d4v8gvcg203lrkvvixwixq1j98fciw"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:skip-build? #t
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-bitflags" ,rust-bitflags-1)
|
(("rust-bitflags" ,rust-bitflags-1)
|
||||||
("rust-crc32fast" ,rust-crc32fast-1)
|
("rust-crc32fast" ,rust-crc32fast-1)
|
||||||
("rust-deflate" ,rust-deflate-0.8)
|
("rust-deflate" ,rust-deflate-0.8)
|
||||||
("rust-miniz-oxide" ,rust-miniz-oxide-0.3))))
|
("rust-miniz-oxide" ,rust-miniz-oxide-0.3))))))
|
||||||
(home-page "https://github.com/image-rs/image-png.git")
|
|
||||||
(synopsis "PNG decoding and encoding library in pure Rust")
|
|
||||||
(description
|
|
||||||
"This package is a PNG decoding and encoding library in pure Rust.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-png-0.15
|
(define-public rust-png-0.15
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue