nix-obs-scene-switcher/obs-scene-switcher.nix
2022-08-24 21:15:57 -05:00

54 lines
1.3 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, curlFull
, ffmpeg
, libaom
, ninja
, pkg-config
, procps
, qtbase
, obs-studio
, opencv
, xorg
}:
stdenv.mkDerivation rec {
pname = "obs-streamfx";
version = "1.17.7";
src = fetchFromGitHub {
owner = "WarmUpTill";
repo = "SceneSwitcher";
rev = version;
sha256 = "iBs+c9+4SOISu4mshjcv+AXtLemSKtadQU2UXXiND7I=";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake ninja pkg-config ];
buildInputs = with xorg; [ curlFull libXScrnSaver libXtst qtbase opencv procps ];
dontWrapQtApps = true;
cmakeFlags = with lib; [
"-DBUILD_OUT_OF_TREE=1"
"-DENABLE_PIPEWIRE=ON"
"-DWITH_RTMPS=OFF"
"-DLIBOBS_LIB=${obs-studio.out}/lib"
"-DLIBOBS_INCLUDE_DIR=${obs-studio.out}/include"
"-DLIBOBS_FRONTEND_API_LIB=${obs-studio.out}/lib"
"-DLIBOBS_FRONTEND_INCLUDE_DIR=${obs-studio.out}/include/obs"
];
patches = [ ];
meta = with lib; {
description = "StreamFX is a plugin for OBS® Studio which adds many new effects, filters, sources, transitions and encoders - all for free! Be it 3D Transform, Blur, complex Masking, or even custom shaders, you'll find it all here.";
homepage = "https://s.xaymar.com/streamfx-dc";
maintainers = [ ];
license = licenses.gpl2Plus;
platforms = [ "x86_64-linux" ];
};
}