39 lines
1023 B
Nix
39 lines
1023 B
Nix
{ stdenv, fetchurl, gnum4, pkgconfig, python2
|
|
, intel-gpu-tools, libdrm, libva, libX11, mesa_noglu, wayland
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libva-intel-driver-1.7.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.freedesktop.org/software/vaapi/releases/libva-intel-driver/${name}.tar.bz2";
|
|
sha256 = "1g371q9p31i57fkidjp2akvrbaadpyx3bwmg5kn72sc2mbv7p7h9";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|