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:
Tobias Geerinckx-Rice 2020-06-03 05:33:02 +02:00
parent 16cf7d471c
commit a0cfa1e21a
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -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)