mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: Add rust-dav1d-sys-0.7.
* gnu/packages/crates-graphics.scm (rust-dav1d-sys-0.7): New variable. (rust-dav1d-sys-0.3): Inherit from rust-dav1d-sys-0.7.
This commit is contained in:
parent
0a21d32b5d
commit
89fb778831
1 changed files with 31 additions and 11 deletions
|
@ -613,10 +613,35 @@ (define-public rust-core-video-sys-0.1
|
||||||
and iOS.")
|
and iOS.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-dav1d-sys-0.3
|
(define-public rust-dav1d-sys-0.7
|
||||||
(package
|
(package
|
||||||
(name "rust-dav1d-sys")
|
(name "rust-dav1d-sys")
|
||||||
(version "0.3.4")
|
(version "0.7.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "dav1d-sys" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "16gzjsfnvfd5zr8mrx5n9mdd4vjvwfwpk9hfscgz7sjyzjdjzcm0"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-system-deps" ,rust-system-deps-6))))
|
||||||
|
(native-inputs
|
||||||
|
(list pkg-config))
|
||||||
|
(inputs
|
||||||
|
(list dav1d))
|
||||||
|
(home-page "https://github.com/rust-av/dav1d-rs")
|
||||||
|
(synopsis "FFI bindings to dav1d")
|
||||||
|
(description "This package provides FFI bindings to dav1d.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-dav1d-sys-0.3
|
||||||
|
(package
|
||||||
|
(inherit rust-dav1d-sys-0.7)
|
||||||
|
(name "rust-dav1d-sys")
|
||||||
|
(version "0.3.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -624,20 +649,15 @@ (define-public rust-dav1d-sys-0.3
|
||||||
(file-name
|
(file-name
|
||||||
(string-append name "-" version ".tar.gz"))
|
(string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "020lla2l703iy69gbksq18snj2b1sp7vmjf39qqykd4242d4msr5"))))
|
(base32 "10y8637snqc3kb9mhs8p9zi8171ba2hlbvhk06vs6hfifx60rr48"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-bindgen" ,rust-bindgen-0.58)
|
(("rust-bindgen" ,rust-bindgen-0.59)
|
||||||
("rust-system-deps" ,rust-system-deps-3))))
|
("rust-system-deps" ,rust-system-deps-6))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
(list dav1d clang llvm))
|
(list dav1d clang llvm))))
|
||||||
(home-page "https://github.com/rust-av/dav1d-rs")
|
|
||||||
(synopsis "FFI bindings to dav1d")
|
|
||||||
(description "This package provides FFI bindings to dav1d.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-euclid-0.22
|
(define-public rust-euclid-0.22
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue