vaapiIntel: add enableHybridCodec option
This commit is contained in:
parent
87130a5b9e
commit
d2935b93e6
@ -1,5 +1,6 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, gnum4, pkgconfig, python2
|
||||
, intel-gpu-tools, libdrm, libva, libX11, libGL, wayland, libXext
|
||||
, enableHybridCodec ? false, vaapi-intel-hybrid
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -7,8 +8,8 @@ stdenv.mkDerivation rec {
|
||||
inherit (libva) version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "01org";
|
||||
repo = "libva-intel-driver";
|
||||
owner = "intel";
|
||||
repo = "intel-vaapi-driver";
|
||||
rev = version;
|
||||
sha256 = "15ag4al9h6b8f8sw1zpighyhsmr5qfqp1882q7r3gsh5g4cnj763";
|
||||
};
|
||||
@ -21,20 +22,25 @@ stdenv.mkDerivation rec {
|
||||
sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure
|
||||
'';
|
||||
|
||||
postInstall = stdenv.lib.optionalString enableHybridCodec ''
|
||||
ln -s ${vaapi-intel-hybrid}/lib/dri/* $out/lib/dri/
|
||||
'';
|
||||
|
||||
configureFlags = [
|
||||
"--enable-drm"
|
||||
"--enable-x11"
|
||||
"--enable-wayland"
|
||||
];
|
||||
] ++ stdenv.lib.optional enableHybridCodec "--enable-hybrid-codec";
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook gnum4 pkgconfig python2 ];
|
||||
|
||||
buildInputs = [ intel-gpu-tools libdrm libva libX11 libXext libGL wayland ];
|
||||
buildInputs = [ intel-gpu-tools libdrm libva libX11 libXext libGL wayland ]
|
||||
++ stdenv.lib.optional enableHybridCodec vaapi-intel-hybrid;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://cgit.freedesktop.org/vaapi/intel-driver/;
|
||||
homepage = https://01.org/linuxmedia;
|
||||
license = licenses.mit;
|
||||
description = "Intel driver for the VAAPI library";
|
||||
platforms = platforms.unix;
|
||||
|
Loading…
Reference in New Issue
Block a user