unixODBCDrivers: fix sqlite driver to link with sqlite3

Without this change, it doesn't actually link to libsqlite3.so
correctly, and so the output driver has unresolved symbols.
This commit is contained in:
Euan Kemp 2020-06-08 22:02:30 -07:00
parent 722ef6c48b
commit cb0f158176

View File

@ -108,7 +108,7 @@
buildInputs = [ unixODBC sqlite zlib libxml2 ];
configureFlags = [ "--with-odbc=${unixODBC}" ];
configureFlags = [ "--with-odbc=${unixODBC}" "--with-sqlite3=${sqlite.dev}" ];
installTargets = [ "install-3" ];