obs-amf: update to 29.1.3, add libGL suffix

This commit is contained in:
Mateusz Słodkowicz 2023-07-21 00:06:55 +02:00
parent 1c025c8466
commit eef75fa86d
Signed by: materus
GPG Key ID: 28D140BCA60B4FD1
1 changed files with 4 additions and 2 deletions

View File

@ -46,6 +46,7 @@
, asio
, websocketpp
, amf-headers
, libGL
}:
let
@ -53,13 +54,13 @@ let
in
stdenv.mkDerivation rec {
pname = "obs-studio-amf";
version = "29.1.2";
version = "29.1.3";
src = fetchFromGitHub {
owner = "obsproject";
repo = "obs-studio";
rev = version;
sha256 = "sha256-+8GAf5z6A8bBd2lj+qTi0Yg3R5RiHkn/Qb5zKfgqh4k=";
sha256 = "sha256-D0DPueMtopwz5rLgM8QcPT7DgTKcJKQHnst69EY9V6Q=";
fetchSubmodules = true;
};
@ -141,6 +142,7 @@ stdenv.mkDerivation rec {
preFixup = ''
qtWrapperArgs+=(
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ xorg.libX11 libvlc ]}"
--suffix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libGL ]}"
--prefix LD_LIBRARY_PATH : "$out/lib"
''${gappsWrapperArgs[@]}
)