summaryrefslogtreecommitdiff
path: root/gnu/packages/video.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r--gnu/packages/video.scm20
1 files changed, 14 insertions, 6 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 8013d41fa0..240730844a 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1501,17 +1501,17 @@ quality and performance.")
(define-public libva
(package
(name "libva")
- (version "2.16.0")
+ (version "2.17.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/intel/libva/releases/download/"
version "/libva-" version ".tar.bz2"))
(sha256
- (base32 "070aj9nw681a4m7f5xb662hhyib0w9q0i0s9v8vplh9cvfhaqpqi"))))
+ (base32 "1b2f1hik4x3n4n8217sg1k602wqjba8x20r7nsdmmq05qckyprgk"))))
(build-system gnu-build-system)
(native-inputs
- (list pkg-config))
+ (list config pkg-config))
(inputs
(list libdrm
libx11
@@ -1533,6 +1533,14 @@ quality and performance.")
#~(list (string-append "dummy_drv_video_ladir=" #$output "/lib/dri"))
#:phases
#~(modify-phases %standard-phases
+ (add-after 'unpack 'update-config-scripts
+ (lambda* (#:key native-inputs inputs #:allow-other-keys)
+ (for-each (lambda (file)
+ (install-file
+ (search-input-file
+ (or native-inputs inputs)
+ (string-append "/bin/" file)) "."))
+ '("config.guess" "config.sub"))))
(add-before 'build 'fix-dlopen-paths
(lambda _
(substitute* "va/drm/va_drm_auth_x11.c"
@@ -3153,7 +3161,7 @@ and custom quantization matrices.")
(list python-pysocks
python-websocket-client
python-isodate
- python-lxml-4.7
+ python-lxml
python-pycountry
python-pycryptodome
python-requests
@@ -3590,7 +3598,7 @@ application with @code{obs-gamecapture}.")
(define-public libvdpau
(package
(name "libvdpau")
- (version "1.4")
+ (version "1.5")
(source
(origin
(method git-fetch)
@@ -3600,7 +3608,7 @@ application with @code{obs-gamecapture}.")
(file-name (git-file-name name version))
(sha256
(base32
- "1hc4mcrbr1yhfiy4zfd8wc2iiqbp90z6jswap0jia20vmyk5lqld"))))
+ "1zfbh5q9adzlydpgwq7hl5w1j2b29j7zns6dxf9fp9pvkj23fz5l"))))
(build-system meson-build-system)
(native-inputs
(list pkg-config))