mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add rust-mp4parse-0.12.
* gnu/packages/crates-graphics.scm (rust-mp4parse-0.12): New variable.
This commit is contained in:
parent
eb8f7f6c0c
commit
62cfe906d7
1 changed files with 30 additions and 0 deletions
|
@ -1605,6 +1605,36 @@ (define-public rust-lyon-svg-0.17
|
|||
(description "This package provides SVG helpers for the lyon crates.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-mp4parse-0.12
|
||||
(package
|
||||
(name "rust-mp4parse")
|
||||
(version "0.12.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "mp4parse" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1ppqv60qiyrnbb996gb1sik08c0j2i317llv3rrcwb1cjg3bdlk7"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; Not all files included.
|
||||
#:cargo-inputs
|
||||
(("rust-bitreader" ,rust-bitreader-0.3)
|
||||
("rust-byteorder" ,rust-byteorder-1)
|
||||
("rust-env-logger" ,rust-env-logger-0.8)
|
||||
("rust-fallible-collections" ,rust-fallible-collections-0.4)
|
||||
("rust-log" ,rust-log-0.4)
|
||||
("rust-num-traits" ,rust-num-traits-0.2)
|
||||
("rust-static-assertions" ,rust-static-assertions-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-criterion" ,rust-criterion-0.3)
|
||||
("rust-test-assembler" ,rust-test-assembler-0.1)
|
||||
("rust-walkdir" ,rust-walkdir-2))))
|
||||
(home-page "https://github.com/mozilla/mp4parse-rust")
|
||||
(synopsis "Parser for ISO base media file format (mp4)")
|
||||
(description "Parser for ISO base media file format (mp4)")
|
||||
(license license:mpl2.0)))
|
||||
|
||||
(define-public rust-osmesa-sys-0.1
|
||||
(package
|
||||
(name "rust-osmesa-sys")
|
||||
|
|
Loading…
Reference in a new issue