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