forked from mirrors/nixpkgs
35 lines
989 B
Nix
35 lines
989 B
Nix
{ stdenv, fetchurl, libX11, pkgconfig, libXext, libdrm, libXfixes, wayland, libffi
|
|
, mesa_noglu ? null
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libva-1.6.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.freedesktop.org/software/vaapi/releases/libva/${name}.tar.bz2";
|
|
sha256 = "0bjfb5s8dk3lql843l91ffxzlq47isqks5sj19cxh7j3nhzw58kz";
|
|
};
|
|
|
|
buildInputs = [ libX11 libXext pkgconfig libdrm libXfixes wayland libffi mesa_noglu ];
|
|
|
|
configureFlags = stdenv.lib.optionals (mesa_noglu != null) [
|
|
"--with-drivers-path=${mesa_noglu.driverLink}/lib/dri"
|
|
"--enable-glx"
|
|
];
|
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
postInstall = ''
|
|
cp -r $out/${mesa_noglu.driverLink}/* $out
|
|
cp -r $out/$out/* $out
|
|
rm -rf $out/run $out/$(echo "$out" | cut -d "/" -f2)
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.freedesktop.org/wiki/Software/vaapi;
|
|
license = licenses.mit;
|
|
description = "VAAPI library: Video Acceleration API";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|