obs-studio-plugins.obs-hyperion: mark as broken
This commit is contained in:
parent
85d67fa055
commit
9e7a3b07e4
2 changed files with 8 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ callPackage, libsForQt5, qt6Packages, pkgsi686Linux }:
|
||||
{ callPackage, qt6Packages, pkgsi686Linux }:
|
||||
|
||||
# When adding new plugins:
|
||||
# - Respect alphabetical order. On diversion, file a PR.
|
||||
|
@ -12,7 +12,7 @@
|
|||
|
||||
obs-gstreamer = callPackage ./obs-gstreamer.nix { };
|
||||
|
||||
obs-hyperion = libsForQt5.callPackage ./obs-hyperion/default.nix { };
|
||||
obs-hyperion = qt6Packages.callPackage ./obs-hyperion/default.nix { };
|
||||
|
||||
obs-move-transition = callPackage ./obs-move-transition.nix { };
|
||||
|
||||
|
|
|
@ -29,11 +29,17 @@ stdenv.mkDerivation rec {
|
|||
chmod -R a+w external
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
# Remove flatbuffers install
|
||||
rm -rf $out/bin $out/lib/{libflatbuffers.a,cmake,pkgconfig} $out/include
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "OBS Studio plugin to connect to a Hyperion.ng server";
|
||||
homepage = "https://github.com/hyperion-project/hyperion-obs-plugin";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ algram ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
broken = true; # Not compatible with qt6 yet but required by OBS28
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue