mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, gnum4, pkgconfig, python2
|
|
, intel-gpu-tools, libdrm, libva, libX11, libGL, wayland, libXext
|
|
, enableHybridCodec ? false, vaapi-intel-hybrid
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "intel-vaapi-driver-${version}";
|
|
version = "2.3.0"; # generally try to match libva version, but not required
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "intel-vaapi-driver";
|
|
rev = version;
|
|
sha256 = "0s6cz9grymll96s7n2rpzvb3b566a2n21nfp6b23r926db089kjd";
|
|
};
|
|
|
|
patchPhase = ''
|
|
patchShebangs ./src/shaders/gpp.py
|
|
'';
|
|
|
|
preConfigure = ''
|
|
sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure
|
|
'';
|
|
|
|
postInstall = stdenv.lib.optionalString enableHybridCodec ''
|
|
ln -s ${vaapi-intel-hybrid}/lib/dri/* $out/lib/dri/
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--enable-drm"
|
|
"--enable-x11"
|
|
"--enable-wayland"
|
|
] ++ stdenv.lib.optional enableHybridCodec "--enable-hybrid-codec";
|
|
|
|
nativeBuildInputs = [ autoreconfHook gnum4 pkgconfig python2 ];
|
|
|
|
buildInputs = [ intel-gpu-tools libdrm libva libX11 libXext libGL wayland ]
|
|
++ stdenv.lib.optional enableHybridCodec vaapi-intel-hybrid;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://01.org/linuxmedia;
|
|
license = licenses.mit;
|
|
description = "Intel driver for the VAAPI library";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ garbas ];
|
|
};
|
|
}
|