Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
55 lines
1.0 KiB
Nix
55 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
libdrm,
|
|
libva,
|
|
libX11,
|
|
libXext,
|
|
libXfixes,
|
|
wayland,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libva-utils";
|
|
version = "2.22.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "libva-utils";
|
|
rev = version;
|
|
sha256 = "sha256-CmhdhNNRO2j8lH7awp9YiKWMvV17GTBsXdrNY06jT2w=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libdrm
|
|
libva
|
|
libX11
|
|
libXext
|
|
libXfixes
|
|
wayland
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "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";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|