From cb0f15817646d7c2e222abad3e7cd1f0713b569e Mon Sep 17 00:00:00 2001 From: Euan Kemp Date: Mon, 8 Jun 2020 22:02:30 -0700 Subject: [PATCH] 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. --- pkgs/development/libraries/unixODBCDrivers/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/unixODBCDrivers/default.nix b/pkgs/development/libraries/unixODBCDrivers/default.nix index 6de0aabe70cb..04aa7e6c6854 100644 --- a/pkgs/development/libraries/unixODBCDrivers/default.nix +++ b/pkgs/development/libraries/unixODBCDrivers/default.nix @@ -108,7 +108,7 @@ buildInputs = [ unixODBC sqlite zlib libxml2 ]; - configureFlags = [ "--with-odbc=${unixODBC}" ]; + configureFlags = [ "--with-odbc=${unixODBC}" "--with-sqlite3=${sqlite.dev}" ]; installTargets = [ "install-3" ];