9 stdenv.mkDerivation rec {
10 pname = "obs-source-record";
13 src = fetchFromGitHub {
15 repo = "obs-source-record";
17 sha256 = "sha256-VgG9Fn75aKTkth4TC9rhfj/HIOO2lIO4n3ZYmemkzx8=";
20 nativeBuildInputs = [ cmake ];
21 buildInputs = [ obs-studio ];
23 NIX_CFLAGS_COMPILE = [ "-Wno-error=deprecated-declarations" ];
25 cmakeFlags = [ "-DBUILD_OUT_OF_TREE=On" ];
28 rm -rf $out/{data,obs-plugins}
32 description = "OBS Studio plugin to make sources available to record via a filter";
33 homepage = "https://github.com/exeldro/obs-source-record";
34 maintainers = with maintainers; [
38 license = licenses.gpl2Only;
39 platforms = [ "x86_64-linux" ];