mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: rust-dav1d-0.6: New variable.
* gnu/packages/crates-graphics.scm (rust-dav1d-sys-0.3): Update to 0.3.4. [arguments]: Require rust-bindgen-0.58 and rust-system-deps-3. Remove rust-bindgen-0.54 and rust-metadeps-1. (rust-dav1d-0.6): New variable.
This commit is contained in:
parent
5d8ffcf22e
commit
ad1e8a0906
1 changed files with 31 additions and 11 deletions
|
@ -570,24 +570,44 @@ (define-public rust-core-video-sys-0.1
|
||||||
and iOS.")
|
and iOS.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-dav1d-0.6
|
||||||
|
(package
|
||||||
|
(name "rust-dav1d")
|
||||||
|
(version "0.6.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "dav1d" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0pn6r1a9qfrpg2xwc7ci2iddvnzxb17ddca0bwymgi839cxc2chl"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-dav1d-sys" ,rust-dav1d-sys-0.3))))
|
||||||
|
(home-page "https://github.com/rust-av/dav1d-rs")
|
||||||
|
(synopsis "libdav1d bindings in Rust")
|
||||||
|
(description "This package provides libdav1d bindings in Rust.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-dav1d-sys-0.3
|
(define-public rust-dav1d-sys-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-dav1d-sys")
|
(name "rust-dav1d-sys")
|
||||||
(version "0.3.2")
|
(version "0.3.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "dav1d-sys" version))
|
(uri (crate-uri "dav1d-sys" version))
|
||||||
(file-name
|
(file-name
|
||||||
(string-append name "-" version ".tar.gz"))
|
(string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "020lla2l703iy69gbksq18snj2b1sp7vmjf39qqykd4242d4msr5"))))
|
||||||
"1jdxhnlxcml6jd67lx78ifzkn1xm18zfk4li7vjdh3fa61i073kx"))))
|
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-bindgen" ,rust-bindgen-0.54)
|
(("rust-bindgen" ,rust-bindgen-0.58)
|
||||||
("rust-metadeps" ,rust-metadeps-1))))
|
("rust-metadeps" ,rust-system-deps-3))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in a new issue