biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / obs-studio / plugins / obs-scale-to-sound.nix
blob5716439655d43761b7e5e9b0c6a1d4da22648e88
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , obs-studio
6 }:
8 stdenv.mkDerivation rec {
9   pname = "obs-scale-to-sound";
10   version = "1.2.3";
12   src = fetchFromGitHub {
13     owner = "dimtpap";
14     repo = "obs-scale-to-sound";
15     rev = version;
16     sha256 = "sha256-q/zNHPazNwmd7GHXrxNgajtOhcW+oTgH9rkIBzJpdpA=";
17   };
19   nativeBuildInputs = [ cmake ];
20   buildInputs = [ obs-studio ];
22   cmakeFlags = [
23     "-DBUILD_OUT_OF_TREE=On"
24   ];
26   postInstall = ''
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
31   '';
33   meta = with lib; {
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" ];
39   };