rocksdb: compile as shared lib

This commit is contained in:
Domen Kožar 2016-12-15 20:18:50 +01:00
parent 580b5435e0
commit d5f92a319a

View File

@ -36,11 +36,11 @@ stdenv.mkDerivation rec {
JEMALLOC_LIB = stdenv.lib.optionalString (malloc == jemalloc) "-ljemalloc"; JEMALLOC_LIB = stdenv.lib.optionalString (malloc == jemalloc) "-ljemalloc";
buildFlags = [ buildFlags = [
"static_lib"
"shared_lib" "shared_lib"
]; ];
installFlags = [ installFlags = [
"install-shared"
"INSTALL_PATH=\${out}" "INSTALL_PATH=\${out}"
]; ];