Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
ninja,
obs-studio,
onnxruntime,
opencv,
qt6,
curl,
}:
stdenv.mkDerivation rec {
pname = "obs-backgroundremoval";
version = "1.1.13";
src = fetchFromGitHub {
owner = "occ-ai";
repo = "obs-backgroundremoval";
rev = version;
hash = "sha256-QoC9/HkwOXMoFNvcOxQkGCLLAJmsja801LKCNT9O9T0=";
};
nativeBuildInputs = [
cmake
ninja
];
buildInputs = [
obs-studio
onnxruntime
opencv.cxxdev
qt6.qtbase
curl
];
dontWrapQtApps = true;
cmakeFlags = [
"--preset linux-x86_64"
"-DCMAKE_MODULE_PATH:PATH=${src}/cmake"
"-DUSE_SYSTEM_ONNXRUNTIME=ON"
"-DUSE_SYSTEM_OPENCV=ON"
"-DDISABLE_ONNXRUNTIME_GPU=ON"
];
buildPhase = ''
cd ..
cmake --build build_x86_64 --parallel
'';
installPhase = ''
cmake --install build_x86_64 --prefix "$out"
'';
meta = with lib; {
description = "OBS plugin to replace the background in portrait images and video";
homepage = "https://github.com/royshil/obs-backgroundremoval";
maintainers = with maintainers; [ zahrun ];
license = licenses.mit;
inherit (obs-studio.meta) platforms;
};
}