8 stdenv.mkDerivation rec {
9 pname = "obs-scale-to-sound";
12 src = fetchFromGitHub {
14 repo = "obs-scale-to-sound";
16 sha256 = "sha256-q/zNHPazNwmd7GHXrxNgajtOhcW+oTgH9rkIBzJpdpA=";
19 nativeBuildInputs = [ cmake ];
20 buildInputs = [ obs-studio ];
23 "-DBUILD_OUT_OF_TREE=On"
27 mkdir $out/lib $out/share
28 mv $out/obs-plugins/64bit $out/lib/obs-plugins
29 rm -rf $out/obs-plugins
30 mv $out/data $out/share/obs
34 description = "OBS filter plugin that scales a source reactively to sound levels";
35 homepage = "https://github.com/dimtpap/obs-scale-to-sound";
36 maintainers = with maintainers; [ flexiondotorg ];
37 license = licenses.gpl2Plus;
38 platforms = [ "x86_64-linux" "i686-linux" ];