[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
186/471: gnu: Add rust-avif-parse-1.
From: |
guix-commits |
Subject: |
186/471: gnu: Add rust-avif-parse-1. |
Date: |
Wed, 3 May 2023 09:27:45 -0400 (EDT) |
efraim pushed a commit to branch rust-team
in repository guix.
commit ec02b0fb44de0801b087001597920b77496db3be
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Feb 23 15:54:28 2023 +0200
gnu: Add rust-avif-parse-1.
* gnu/packages/crates-graphics.scm (rust-avif-parse-1): New variable.
(rust-avif-parse-0.13): Inherit from rust-avif-parse-1.
---
gnu/packages/crates-graphics.scm | 40 +++++++++++++++++++++++++++++++---------
1 file changed, 31 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/crates-graphics.scm b/gnu/packages/crates-graphics.scm
index 688a61621b..759dfb84a6 100644
--- a/gnu/packages/crates-graphics.scm
+++ b/gnu/packages/crates-graphics.scm
@@ -247,8 +247,38 @@ the term library to handle the ANSI nonsense and hence it
works on Windows,
Mac, and Unix.")
(license (list license:asl2.0 license:expat))))
+(define-public rust-avif-parse-1
+ (package
+ (name "rust-avif-parse")
+ (version "1.0.0")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "avif-parse" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
"1vhd4n06g5mbf4sznz67mk352pw9hh97f4ysafp737xvzfd3zyw7"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-bitreader" ,rust-bitreader-0.3)
+ ("rust-byteorder" ,rust-byteorder-1)
+ ("rust-fallible-collections" ,rust-fallible-collections-0.4)
+ ("rust-log" ,rust-log-0.4)
+ ("rust-static-assertions" ,rust-static-assertions-1))
+ #:cargo-development-inputs
+ (("rust-env-logger" ,rust-env-logger-0.9)
+ ("rust-walkdir" ,rust-walkdir-2))))
+ (home-page "https://github.com/kornelski/avif-parse")
+ (synopsis "Parser for AVIF image files")
+ (description "This AVIF parser allows extracting the AV1 payload and alpha
+channel metadata out of AVIF image files. The parser is a fork of Mozilla's
+MP4 parser used in Firefox, so it's designed to be robust and safely handle
+untrusted data.")
+ (license license:mpl2.0)))
+
(define-public rust-avif-parse-0.13
(package
+ (inherit rust-avif-parse-1)
(name "rust-avif-parse")
(version "0.13.2")
(source
@@ -260,7 +290,6 @@ Mac, and Unix.")
(sha256
(base32
"1vylrjq77mpl6flmd85j5f2qimh6vjn03syvq8agb62x56khm0xj"))))
- (build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-bitreader" ,rust-bitreader-0.3)
@@ -270,14 +299,7 @@ Mac, and Unix.")
("rust-static-assertions" ,rust-static-assertions-1))
#:cargo-development-inputs
(("rust-env-logger" ,rust-env-logger-0.8)
- ("rust-walkdir" ,rust-walkdir-2))))
- (home-page "https://github.com/kornelski/avif-parse")
- (synopsis "Parser for AVIF image files")
- (description "This AVIF parser allows extracting the AV1 payload and alpha
-channel metadata out of AVIF image files. The parser is a fork of Mozilla's
-MP4 parser used in Firefox, so it's designed to be robust and safely handle
-untrusted data.")
- (license license:mpl2.0)))
+ ("rust-walkdir" ,rust-walkdir-2))))))
(define-public rust-avif-serialize-0.6
(package
- 156/471: gnu: Remove rust-zstd-0.6., (continued)
- 156/471: gnu: Remove rust-zstd-0.6., guix-commits, 2023/05/03
- 158/471: gnu: Remove rust-try-lock-0.1., guix-commits, 2023/05/03
- 165/471: gnu: Remove rust-relay-0.1., guix-commits, 2023/05/03
- 170/471: gnu: Remove rust-parity-wasm-0.40., guix-commits, 2023/05/03
- 176/471: gnu: Remove rust-float-cmp-0.3., guix-commits, 2023/05/03
- 177/471: gnu: Remove rust-fixed-hash-0.2., guix-commits, 2023/05/03
- 183/471: Revert "gnu: Remove rust-libz-ng-sys-1.", guix-commits, 2023/05/03
- 184/471: gnu: rust-imgref-1: Update to 1.9.4., guix-commits, 2023/05/03
- 185/471: gnu: rust-aom-sys-0.3: Update to 0.3.2., guix-commits, 2023/05/03
- 188/471: gnu: Add rust-avif-serialize-0.7., guix-commits, 2023/05/03
- 186/471: gnu: Add rust-avif-parse-1.,
guix-commits <=
- 202/471: gnu: Add rust-half-2., guix-commits, 2023/05/03
- 203/471: gnu: rust-js-sys-0.3: Update to 0.3.61., guix-commits, 2023/05/03
- 208/471: gnu: Add rust-nanorand-0.7., guix-commits, 2023/05/03
- 210/471: gnu: rust-num-rational-0.4: Update to 0.4.1., guix-commits, 2023/05/03
- 211/471: gnu: rust-pretty-assertions-1: Update to 1.3.0., guix-commits, 2023/05/03
- 219/471: gnu: rust-wasm-bindgen-shared-0.2: Update to 0.2.84., guix-commits, 2023/05/03
- 221/471: gnu: rust-wasm-bindgen-test-macro-0.3: Update to 0.3.34., guix-commits, 2023/05/03
- 223/471: gnu: rust-weezl-0.1: Update to 0.1.7., guix-commits, 2023/05/03
- 224/471: gnu: rav1e: Update to 0.6.3., guix-commits, 2023/05/03
- 226/471: gnu: Add rust-serde-big-array-0.4., guix-commits, 2023/05/03