Skip to content

Commit

Permalink
obs-studio: fix vlc plugin
Browse files Browse the repository at this point in the history
previous obs could not find libvlc.so so I addded the path to
it to LD_LIBRARY_PATH
  • Loading branch information
Cray Elliott authored and Cray Elliott committed Dec 18, 2017
1 parent c1e8fea commit 52b8b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/applications/video/obs-studio/default.nix
Expand Up @@ -70,7 +70,7 @@ in stdenv.mkDerivation rec {

postInstall = ''
wrapProgram $out/bin/obs \
--prefix "LD_LIBRARY_PATH" : "${xorg.libX11.out}/lib"
--prefix "LD_LIBRARY_PATH" : "${xorg.libX11.out}/lib:${vlc}/lib"
'';

meta = with stdenv.lib; {
Expand Down

0 comments on commit 52b8b7b

Please sign in to comment.