biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / obs-studio / plugins / obs-transition-table.nix
blobed8aadb52ae7bd284eae9a837696b0c1a9bbd0b5
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , obs-studio
6 , qtbase
7 }:
9 stdenv.mkDerivation rec {
10   pname = "obs-transition-table";
11   version = "0.2.7";
13   src = fetchFromGitHub {
14     owner = "exeldro";
15     repo = "obs-transition-table";
16     rev = version;
17     sha256 = "sha256-rGF7hugC5ybpZBAIIXDiy3YDooMawf/yYX2YucQm2/U=";
18   };
20   nativeBuildInputs = [ cmake ];
21   buildInputs = [ obs-studio qtbase ];
23   cmakeFlags = [
24     "-DBUILD_OUT_OF_TREE=On"
25   ];
27   dontWrapQtApps = true;
29   postInstall = ''
30     rm -rf $out/obs-plugins $out/data
31   '';
33   meta = with lib; {
34     description = "Plugin for OBS Studio to add a Transition Table to the tools menu";
35     homepage = "https://github.com/exeldro/obs-transition-table";
36     maintainers = with maintainers; [ flexiondotorg ];
37     license = licenses.gpl2Plus;
38     platforms = [ "x86_64-linux" "i686-linux" ];
39   };