2016-03-03 11:36:27 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, libX11, libpthreadstubs, libXau, libXdmcp
|
2018-02-24 12:59:47 +00:00
|
|
|
, libXext, libvdpau, glib, libva, ffmpeg, libGLU }:
|
2016-01-24 17:17:10 +00:00
|
|
|
|
2016-03-03 11:36:27 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libvdpau-va-gl";
|
2016-11-23 15:02:08 +00:00
|
|
|
version = "0.4.2";
|
2016-01-24 17:17:10 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "i-rinat";
|
|
|
|
repo = "libvdpau-va-gl";
|
|
|
|
rev = "v${version}";
|
2016-11-23 15:02:08 +00:00
|
|
|
sha256 = "0asndybfv8xb0fx73sjjw5kydqrahqkm6n04lh589pbf18s5qlld";
|
2016-01-24 17:17:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2018-02-24 12:59:47 +00:00
|
|
|
buildInputs = [ libX11 libpthreadstubs libXau libXdmcp libXext libvdpau glib libva ffmpeg libGLU ];
|
2016-01-24 17:17:10 +00:00
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails. needs DRI access
|
|
|
|
|
2016-01-24 17:17:10 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/i-rinat/libvdpau-va-gl";
|
2016-01-24 17:17:10 +00:00
|
|
|
description = "VDPAU driver with OpenGL/VAAPI backend";
|
|
|
|
license = licenses.lgpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|