2017-12-15 21:10:12 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, gnum4, pkgconfig, python2
|
2018-02-24 12:06:44 +00:00
|
|
|
, intel-gpu-tools, libdrm, libva, libX11, libGL, wayland, libXext
|
2018-06-27 21:15:52 +01:00
|
|
|
, enableHybridCodec ? false, vaapi-intel-hybrid
|
2015-05-05 13:41:54 +01:00
|
|
|
}:
|
2013-01-28 23:31:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "intel-vaapi-driver";
|
2019-12-09 06:39:30 +00:00
|
|
|
version = "2.4.0";
|
2013-06-03 05:01:12 +01:00
|
|
|
|
2017-12-15 21:10:12 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-06-27 21:15:52 +01:00
|
|
|
owner = "intel";
|
|
|
|
repo = "intel-vaapi-driver";
|
2019-12-09 06:39:30 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "019w0hvjc9l85yqhy01z2bvvljq208nkb43ai2v377l02krgcrbl";
|
2013-01-28 23:31:35 +00:00
|
|
|
};
|
|
|
|
|
2015-05-05 13:41:54 +01:00
|
|
|
patchPhase = ''
|
|
|
|
patchShebangs ./src/shaders/gpp.py
|
2014-08-04 07:22:16 +01:00
|
|
|
'';
|
|
|
|
|
2013-01-28 23:31:35 +00:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure
|
|
|
|
'';
|
|
|
|
|
2018-06-27 21:15:52 +01:00
|
|
|
postInstall = stdenv.lib.optionalString enableHybridCodec ''
|
|
|
|
ln -s ${vaapi-intel-hybrid}/lib/dri/* $out/lib/dri/
|
|
|
|
'';
|
|
|
|
|
2015-05-05 13:41:54 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-drm"
|
|
|
|
"--enable-x11"
|
|
|
|
"--enable-wayland"
|
2018-06-27 21:15:52 +01:00
|
|
|
] ++ stdenv.lib.optional enableHybridCodec "--enable-hybrid-codec";
|
2015-05-05 13:41:54 +01:00
|
|
|
|
2017-12-15 21:10:12 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook gnum4 pkgconfig python2 ];
|
2015-05-05 13:41:54 +01:00
|
|
|
|
2018-06-27 21:15:52 +01:00
|
|
|
buildInputs = [ intel-gpu-tools libdrm libva libX11 libXext libGL wayland ]
|
|
|
|
++ stdenv.lib.optional enableHybridCodec vaapi-intel-hybrid;
|
2015-05-05 13:41:54 +01:00
|
|
|
|
2017-12-15 21:10:12 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-08-04 07:22:16 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-06-27 21:15:52 +01:00
|
|
|
homepage = https://01.org/linuxmedia;
|
2014-08-04 07:22:16 +01:00
|
|
|
license = licenses.mit;
|
2013-01-28 23:31:35 +00:00
|
|
|
description = "Intel driver for the VAAPI library";
|
2014-08-04 07:22:16 +01:00
|
|
|
platforms = platforms.unix;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2013-01-28 23:31:35 +00:00
|
|
|
};
|
|
|
|
}
|