2020-05-23 13:53:23 +01:00
|
|
|
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config
|
|
|
|
, libdrm, libva, libX11, libXext, libXfixes, wayland
|
2017-12-15 21:10:12 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libva-utils";
|
2017-12-15 21:10:12 +00:00
|
|
|
inherit (libva) version;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-04-23 19:51:52 +01:00
|
|
|
owner = "intel";
|
2017-12-15 21:10:12 +00:00
|
|
|
repo = "libva-utils";
|
|
|
|
rev = version;
|
2020-06-26 13:35:36 +01:00
|
|
|
sha256 = "081hw2jnj64bpqwh9p41n5caqzm6dnj1ggnvvc5wrf4m2z1h2bjb";
|
2017-12-15 21:10:12 +00:00
|
|
|
};
|
|
|
|
|
2020-05-23 13:53:23 +01:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
2017-12-15 21:10:12 +00:00
|
|
|
|
2019-02-01 20:50:21 +00:00
|
|
|
buildInputs = [ libdrm libva libX11 libXext libXfixes wayland ];
|
|
|
|
|
2017-12-15 21:10:12 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-23 19:51:52 +01:00
|
|
|
description = "A collection of utilities and examples for VA-API";
|
|
|
|
longDescription = ''
|
|
|
|
libva-utils is a collection of utilities and examples to exercise VA-API
|
|
|
|
in accordance with the libva project.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/intel/libva-utils";
|
|
|
|
changelog = "https://raw.githubusercontent.com/intel/libva-utils/${version}/NEWS";
|
2017-12-15 21:10:12 +00:00
|
|
|
license = licenses.mit;
|
2020-04-23 19:51:52 +01:00
|
|
|
maintainers = with maintainers; [ primeos ];
|
2017-12-15 21:10:12 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|