srtp: build as shared library

This commit is contained in:
Nikolay Amiantov 2017-03-22 21:49:41 +03:00
parent 1715e3643b
commit 5a04d38ca6

View File

@ -23,6 +23,8 @@ stdenv.mkDerivation rec {
"--disable-debug"
] ++ optional (openssl != null) "--enable-openssl";
buildFlags = [ "shared_library" ];
postInstall = ''
rm -rf $out/bin
'';