nixpkgs/pkgs/development/libraries/vaapi-intel/default.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, gnum4, pkgconfig, python2
, intel-gpu-tools, libdrm, libva, libX11, libGL, wayland, libXext
2015-05-05 12:41:54 +00:00
}:
stdenv.mkDerivation rec {
2017-11-01 17:29:25 +00:00
name = "intel-vaapi-driver-${version}";
inherit (libva) version;
2013-06-03 04:01:12 +00:00
src = fetchFromGitHub {
owner = "01org";
repo = "libva-intel-driver";
rev = version;
sha256 = "15ag4al9h6b8f8sw1zpighyhsmr5qfqp1882q7r3gsh5g4cnj763";
};
2015-05-05 12:41:54 +00:00
patchPhase = ''
patchShebangs ./src/shaders/gpp.py
2014-08-04 06:22:16 +00:00
'';
preConfigure = ''
sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure
'';
2015-05-05 12:41:54 +00:00
configureFlags = [
"--enable-drm"
"--enable-x11"
"--enable-wayland"
];
nativeBuildInputs = [ autoreconfHook gnum4 pkgconfig python2 ];
2015-05-05 12:41:54 +00:00
buildInputs = [ intel-gpu-tools libdrm libva libX11 libXext libGL wayland ];
2015-05-05 12:41:54 +00:00
enableParallelBuilding = true;
2014-08-04 06:22:16 +00:00
meta = with stdenv.lib; {
homepage = https://cgit.freedesktop.org/vaapi/intel-driver/;
2014-08-04 06:22:16 +00:00
license = licenses.mit;
description = "Intel driver for the VAAPI library";
2014-08-04 06:22:16 +00:00
platforms = platforms.unix;
2016-05-25 00:39:57 +00:00
maintainers = with maintainers; [ garbas ];
};
}