{ lib , stdenv , fetchFromGitHub , cmake , pkg-config , libdrm , libva }: stdenv.mkDerivation rec { pname = "vpl-gpu-rt"; version = "24.2.5"; outputs = [ "out" "dev" ]; src = fetchFromGitHub { owner = "intel"; repo = "vpl-gpu-rt"; rev = "intel-onevpl-${version}"; sha256 = "sha256-WYlA8+i8TTFHsU4+doLcv75F9MR2V/BEuNGGLgM4p1s="; }; 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 = lib.platforms.linux; # CMake adds x86 specific compiler flags in /builder/FindGlobals.cmake # NOTE: https://github.com/oneapi-src/oneVPL-intel-gpu/issues/303 broken = !stdenv.hostPlatform.isx86; maintainers = with lib.maintainers; [ evanrichter pjungkamp ]; }; }