40 lines
1.0 KiB
Nix
40 lines
1.0 KiB
Nix
{ stdenv, fetchurl, gnum4, pkgconfig, python2
|
|
, intel-gpu-tools, libdrm, libva, libX11, mesa_noglu, wayland
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "intel-vaapi-driver-${version}";
|
|
version = "1.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.freedesktop.org/software/vaapi/releases/libva-intel-driver/${name}.tar.bz2";
|
|
sha256 = "00mpcvininwr5c4wyhp16s4bddg7vclxxjm2sfq5h7lifjcxyv46";
|
|
};
|
|
|
|
patchPhase = ''
|
|
patchShebangs ./src/shaders/gpp.py
|
|
'';
|
|
|
|
preConfigure = ''
|
|
sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--enable-drm"
|
|
"--enable-x11"
|
|
"--enable-wayland"
|
|
];
|
|
|
|
nativeBuildInputs = [ gnum4 pkgconfig python2 ];
|
|
|
|
buildInputs = [ intel-gpu-tools libdrm libva libX11 mesa_noglu wayland ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://cgit.freedesktop.org/vaapi/intel-driver/;
|
|
license = licenses.mit;
|
|
description = "Intel driver for the VAAPI library";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ garbas ];
|
|
};
|
|
}
|