2017-12-15 22:10:12 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, gnum4, pkgconfig, python2
|
2017-11-25 22:30:39 +01:00
|
|
|
, intel-gpu-tools, libdrm, libva, libX11, mesa_noglu, wayland, libXext
|
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}";
|
2017-12-15 22:10:12 +01:00
|
|
|
inherit (libva) version;
|
2013-06-03 06:01:12 +02:00
|
|
|
|
2017-12-15 22:10:12 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "01org";
|
|
|
|
repo = "libva-intel-driver";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1832nnva3d33wv52bj59bv62q7a807sdxjqqq0my7l9x7a4qdkzz";
|
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
|
|
|
|
'';
|
|
|
|
|
2015-05-05 14:41:54 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-drm"
|
|
|
|
"--enable-x11"
|
|
|
|
"--enable-wayland"
|
|
|
|
];
|
|
|
|
|
2017-12-15 22:10:12 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook gnum4 pkgconfig python2 ];
|
2015-05-05 14:41:54 +02:00
|
|
|
|
2017-11-25 22:30:39 +01:00
|
|
|
buildInputs = [ intel-gpu-tools libdrm libva libX11 libXext mesa_noglu wayland ];
|
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-01-05 20:42:46 +01:00
|
|
|
homepage = https://cgit.freedesktop.org/vaapi/intel-driver/;
|
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
|
|
|
};
|
|
|
|
}
|