Merge pull request #193590 from erosennin/jitsi-videobridge-openssl

authored by Sandro and committed by GitHub 4f44b97d c3d026af

+5 -3
+5 -3
pkgs/servers/jitsi-videobridge/default.nix
··· 1 - { lib, stdenv, fetchurl, makeWrapper, dpkg, jre_headless, nixosTests }: 1 + { lib, stdenv, fetchurl, makeWrapper, dpkg, jre_headless, openssl, nixosTests }: 2 2 3 3 let 4 4 pname = "jitsi-videobridge2"; ··· 28 28 mv usr/share/jitsi-videobridge/* $out/share/jitsi-videobridge/ 29 29 ln -s $out/share/jitsi-videobridge/jvb.sh $out/bin/jitsi-videobridge 30 30 31 - # work around https://github.com/jitsi/jitsi-videobridge/issues/1547 31 + # - work around https://github.com/jitsi/jitsi-videobridge/issues/1547 32 + # - make libcrypto.so available at runtime for hardware AES 32 33 wrapProgram $out/bin/jitsi-videobridge \ 33 - --set VIDEOBRIDGE_GC_TYPE G1GC 34 + --set VIDEOBRIDGE_GC_TYPE G1GC \ 35 + --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ openssl ]} 34 36 runHook postInstall 35 37 ''; 36 38