mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-28 00:49:38 +00:00
49 lines
862 B
Nix
49 lines
862 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
libdrm,
|
|
libva,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vpl-gpu-rt";
|
|
version = "25.2.1";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "vpl-gpu-rt";
|
|
rev = "intel-onevpl-${version}";
|
|
hash = "sha256-K6w5A0LbQDTKM5y5AzZ/Hr/FwQLZqHov0tiJHbzUE4w=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libdrm
|
|
libva
|
|
];
|
|
|
|
meta = {
|
|
description = "oneAPI Video Processing Library Intel GPU implementation";
|
|
homepage = "https://github.com/intel/vpl-gpu-rt";
|
|
changelog = "https://github.com/intel/vpl-gpu-rt/releases/tag/${src.rev}";
|
|
license = [ lib.licenses.mit ];
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with lib.maintainers; [
|
|
evanrichter
|
|
pjungkamp
|
|
];
|
|
};
|
|
}
|