gnu: libva: Build with wayland support.

* gnu/packages/video.scm (libva)[inputs]: Add wayland.
* gnu/packages/gl.scm (libva-without-mesa)[inputs]: Remove wayland.
master
Efraim Flashner 2018-05-01 19:04:49 +03:00
parent 6e339db06e
commit 3ee7b4cc9b
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
2 changed files with 6 additions and 3 deletions

View File

@ -55,7 +55,8 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (ice-9 match))
#:use-module (ice-9 match)
#:use-module (srfi srfi-1))
(define-public glu
(package
@ -211,7 +212,8 @@ also known as DXTn or DXTC) for Mesa.")
(package
(inherit libva)
(name "libva-without-mesa")
(inputs (alist-delete "mesa" (package-inputs libva)))
(inputs `(,@(fold alist-delete (package-inputs libva)
'("mesa" "wayland"))))
(arguments
(strip-keyword-arguments
'(#:make-flags)

View File

@ -564,7 +564,8 @@ libebml is a C++ library to read and write EBML files.")
("libx11" ,libx11)
("libxext" ,libxext)
("libxfixes" ,libxfixes)
("mesa" ,mesa)))
("mesa" ,mesa)
("wayland" ,wayland)))
(arguments
`(#:phases
(modify-phases %standard-phases