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