mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
e3ed881b30
Co-authored-by: materus <materus@podkos.pl> Co-authored-by: Franz Pletz <fpletz@fnordicwalking.de>
42 lines
810 B
Nix
42 lines
810 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libvpl";
|
|
version = "2.10.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = finalAttrs.pname;
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-2yfJo4iwI/h0CJ+mJJ3cAyG5S7KksUibwJHebF3MR+E=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_BUILD_TYPE=Release"
|
|
"-DENABLE_DRI3=ON"
|
|
"-DENABLE_DRM=ON"
|
|
"-DENABLE_VA=ON"
|
|
"-DENABLE_WAYLAND=ON"
|
|
"-DENABLE_X11=ON"
|
|
"-DINSTALL_EXAMPLE_CODE=OFF"
|
|
"-DBUILD_TOOLS=OFF"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Intel Video Processing Library";
|
|
homepage = "https://intel.github.io/libvpl/";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|