{ lib, stdenv, fetchFromGitHub, cmake, curl, obs-studio, qtbase, }: stdenv.mkDerivation rec { pname = "obs-vertical-canvas"; version = "1.4.10"; src = fetchFromGitHub { owner = "Aitum"; repo = "obs-vertical-canvas"; rev = version; sha256 = "sha256-0XfJ8q8n2ANO0oDtLZhZjRunZ5S1EouQ6Ak/pxEQYOQ="; }; # Remove after https://github.com/Aitum/obs-vertical-canvas/pull/25 is released :) patches = [ ./obs-vertical-canvas.diff ]; nativeBuildInputs = [ cmake ]; buildInputs = [ curl obs-studio qtbase ]; cmakeFlags = [ "-DBUILD_OUT_OF_TREE=On" ''-DCMAKE_CXX_FLAGS="-Wno-error=deprecated-declarations"'' ]; dontWrapQtApps = true; postInstall = '' rm -rf $out/data rm -rf $out/obs-plugins ''; meta = { description = "Plugin for OBS Studio to add vertical canvas"; homepage = "https://github.com/Aitum/obs-vertical-canvas"; maintainers = with lib.maintainers; [ flexiondotorg ]; license = lib.licenses.gpl2Plus; platforms = [ "x86_64-linux" "i686-linux" ]; }; }