biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / obs-studio / plugins / obs-source-switcher.nix
blobb336ddf91203977779917ca7f1e4c574446d87ef
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , obs-studio
6 }:
8 stdenv.mkDerivation rec {
9   pname = "obs-source-switcher";
10   version = "0.4.1";
12   src = fetchFromGitHub {
13     owner = "exeldro";
14     repo = "obs-source-switcher";
15     rev = "8babf207d140e52114b6db63d98749d7a0a2758b";
16     sha256 = "sha256-J/NdIGsSXCtSOGF72pJZqqN5Y73eJfrA72LgZcTlP5o=";
17   };
19   nativeBuildInputs = [ cmake ];
20   buildInputs = [ obs-studio ];
22   cmakeFlags = [
23     "-DBUILD_OUT_OF_TREE=On"
24   ];
26   postInstall = ''
27     rm -rf $out/obs-plugins $out/data
28   '';
30   meta = with lib; {
31     description = "Plugin for OBS Studio to switch between a list of sources";
32     homepage = "https://github.com/exeldro/obs-source-switcher";
33     maintainers = with maintainers; [ flexiondotorg ];
34     license = licenses.gpl2Plus;
35     platforms = [ "x86_64-linux" "i686-linux" ];
36   };