2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, gnum4, pkg-config, python3
|
2018-02-24 04:06:44 -08:00
|
|
|
, intel-gpu-tools, libdrm, libva, libX11, libGL, wayland, libXext
|
2018-06-27 13:15:52 -07:00
|
|
|
, enableHybridCodec ? false, vaapi-intel-hybrid
|
2015-05-05 05:41:54 -07:00
|
|
|
}:
|
2013-01-28 15:31:35 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "intel-vaapi-driver";
|
2020-07-12 04:08:51 -07:00
|
|
|
version = "2.4.1";
|
2013-06-02 21:01:12 -07:00
|
|
|
|
2017-12-15 13:10:12 -08:00
|
|
|
src = fetchFromGitHub {
|
2018-06-27 13:15:52 -07:00
|
|
|
owner = "intel";
|
|
|
|
repo = "intel-vaapi-driver";
|
2019-12-08 22:39:30 -08:00
|
|
|
rev = version;
|
2020-07-12 04:08:51 -07:00
|
|
|
sha256 = "1cidki3av9wnkgwi7fklxbg3bh6kysf8w3fk2qadjr05a92mx3zp";
|
2013-01-28 15:31:35 -08:00
|
|
|
};
|
|
|
|
|
2020-07-12 05:29:18 -07:00
|
|
|
# Set the correct install path:
|
|
|
|
LIBVA_DRIVERS_PATH = "${placeholder "out"}/lib/dri";
|
2013-01-28 15:31:35 -08:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
postInstall = lib.optionalString enableHybridCodec ''
|
2018-06-27 13:15:52 -07:00
|
|
|
ln -s ${vaapi-intel-hybrid}/lib/dri/* $out/lib/dri/
|
|
|
|
'';
|
|
|
|
|
2015-05-05 05:41:54 -07:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-x11"
|
|
|
|
"--enable-wayland"
|
2021-01-21 09:00:13 -08:00
|
|
|
] ++ lib.optional enableHybridCodec "--enable-hybrid-codec";
|
2015-05-05 05:41:54 -07:00
|
|
|
|
2020-07-12 05:29:18 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook gnum4 pkg-config python3 ];
|
2015-05-05 05:41:54 -07:00
|
|
|
|
2018-06-27 13:15:52 -07:00
|
|
|
buildInputs = [ intel-gpu-tools libdrm libva libX11 libXext libGL wayland ]
|
2021-01-21 09:00:13 -08:00
|
|
|
++ lib.optional enableHybridCodec vaapi-intel-hybrid;
|
2015-05-05 05:41:54 -07:00
|
|
|
|
2017-12-15 13:10:12 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://01.org/linuxmedia";
|
2014-08-03 23:22:16 -07:00
|
|
|
license = licenses.mit;
|
2020-07-12 05:29:18 -07:00
|
|
|
description = "VA-API user mode driver for Intel GEN Graphics family";
|
|
|
|
longDescription = ''
|
|
|
|
This VA-API video driver backend provides a bridge to the GEN GPUs through
|
|
|
|
the packaging of buffers and commands to be sent to the i915 driver for
|
|
|
|
exercising both hardware and shader functionality for video decode,
|
|
|
|
encode, and processing.
|
|
|
|
VA-API is an open-source library and API specification, which provides
|
|
|
|
access to graphics hardware acceleration capabilities for video
|
|
|
|
processing. It consists of a main library and driver-specific acceleration
|
|
|
|
backends for each supported hardware vendor.
|
|
|
|
'';
|
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
2013-01-28 15:31:35 -08:00
|
|
|
};
|
|
|
|
}
|