diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2023-06-13 13:10:43 +0000 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2023-07-29 21:18:09 -0400 |
commit | c7cf2efb7abcc7a5a7ce9606c9d876d00ddde9ad (patch) | |
tree | 4a52bd208d342dc0f49c11277cb35617080dc5db | |
parent | 6b903e210462f7c1e428e0ded7e690d315e1f7a1 (diff) | |
download | guix-c7cf2efb7abcc7a5a7ce9606c9d876d00ddde9ad.tar.gz guix-c7cf2efb7abcc7a5a7ce9606c9d876d00ddde9ad.zip |
gnu: mesa: Fix VDPAU drivers path.
The VDPAU_DRIVER_PATH environment variable must contain only one directory.
* gnu/packages/gl.scm (mesa)[native-search-paths]: Fix specification for
VDPAU_DRIVER_PATH.
Signed-off-by: John Kehayias <john.kehayias@protonmail.com>
-rw-r--r-- | gnu/packages/gl.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index 1691086e1a..d42903cc8f 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -518,6 +518,7 @@ svga,swrast,virgl"))) (list (search-path-specification ;; Ensure the Mesa VDPAU drivers can be found. (variable "VDPAU_DRIVER_PATH") + (separator #f) (files '("lib/vdpau"))))) (home-page "https://mesa3d.org/") (synopsis "OpenGL and Vulkan implementations") |