libva: make libva-full the default

It seems that all uses of `libva` it in nixpkgs except `mesa` and itself actually
either will gain from using `libva-full` instead of `libva-minimal` by default
or simply won't care.
This commit is contained in:
Jan Malakhovski
2018-02-09 04:05:38 +00:00
committed by Nikolay Amiantov
parent 8f6f69cb0f
commit c7cf808ff8
5 changed files with 15 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
{ callPackage, libva-full }:
{ callPackage }:
rec {
gstreamer = callPackage ./core { };
@@ -23,7 +23,6 @@ rec {
gst-vaapi = callPackage ./vaapi {
inherit gst-plugins-base gstreamer gst-plugins-bad;
libva = libva-full; # looks also for libva-{x11,wayland}
};
gst-validate = callPackage ./validate { inherit gst-plugins-base; };