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
|
2015-05-05 13:41:54 +01:00
|
|
|
}:
|
2013-01-28 23:31:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-11-01 17:29:25 +00:00
|
|
|
name = "intel-vaapi-driver-${version}";
|
2017-12-15 21:10:12 +00:00
|
|
|
inherit (libva) version;
|
2013-06-03 05:01:12 +01:00
|
|
|
|
2017-12-15 21:10:12 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "01org";
|
|
|
|
repo = "libva-intel-driver";
|
|
|
|
rev = version;
|
2018-02-21 03:35:40 +00:00
|
|
|
sha256 = "15ag4al9h6b8f8sw1zpighyhsmr5qfqp1882q7r3gsh5g4cnj763";
|
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
|
|
|
|
'';
|
|
|
|
|
2015-05-05 13:41:54 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-drm"
|
|
|
|
"--enable-x11"
|
|
|
|
"--enable-wayland"
|
|
|
|
];
|
|
|
|
|
2017-12-15 21:10:12 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook gnum4 pkgconfig python2 ];
|
2015-05-05 13:41:54 +01:00
|
|
|
|
2018-02-24 12:06:44 +00:00
|
|
|
buildInputs = [ intel-gpu-tools libdrm libva libX11 libXext libGL wayland ];
|
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-01-05 19:42:46 +00:00
|
|
|
homepage = https://cgit.freedesktop.org/vaapi/intel-driver/;
|
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;
|
2016-05-25 01:39:57 +01:00
|
|
|
maintainers = with maintainers; [ garbas ];
|
2013-01-28 23:31:35 +00:00
|
|
|
};
|
|
|
|
}
|