mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: intel-vaapi-driver: Update to 2.4.1.
* gnu/packages/video.scm (intel-vaapi-driver): Update to 2.4.1. [source]: Use GIT-FETCH and GIT-FILE-NAME. [native-inputs]: Add autoconf, automake, and libtool.
This commit is contained in:
parent
16cf7d471c
commit
a0cfa1e21a
1 changed files with 11 additions and 7 deletions
|
@ -2888,18 +2888,22 @@ (define-public handbrake
|
|||
(define-public intel-vaapi-driver
|
||||
(package
|
||||
(name "intel-vaapi-driver")
|
||||
(version "2.4.0")
|
||||
(version "2.4.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/intel/intel-vaapi-driver/"
|
||||
"releases/download/" version "/intel-vaapi-driver-"
|
||||
version ".tar.bz2"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/intel/intel-vaapi-driver")
|
||||
(commit version)))
|
||||
(sha256
|
||||
(base32 "12fhydgwpvyh97gxqlgv77wsf9yax321h46vi49j4sxghpcxvqki"))))
|
||||
(base32 "1cidki3av9wnkgwi7fklxbg3bh6kysf8w3fk2qadjr05a92mx3zp"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("libtool" ,libtool)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("libdrm" ,libdrm)
|
||||
("libva" ,libva)
|
||||
|
|
Loading…
Reference in a new issue