about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorEuan Kemp <euank@euank.com>2020-06-08 22:02:30 -0700
committerEuan Kemp <euank@euank.com>2020-06-08 22:02:30 -0700
commitcb0f15817646d7c2e222abad3e7cd1f0713b569e (patch)
tree34b90039978f3170130214d4a672d88b3795eba9 /pkgs/development/libraries
parent722ef6c48bbf549802deca870326df06864796ea (diff)
downloadnixlib-cb0f15817646d7c2e222abad3e7cd1f0713b569e.tar
nixlib-cb0f15817646d7c2e222abad3e7cd1f0713b569e.tar.gz
nixlib-cb0f15817646d7c2e222abad3e7cd1f0713b569e.tar.bz2
nixlib-cb0f15817646d7c2e222abad3e7cd1f0713b569e.tar.lz
nixlib-cb0f15817646d7c2e222abad3e7cd1f0713b569e.tar.xz
nixlib-cb0f15817646d7c2e222abad3e7cd1f0713b569e.tar.zst
nixlib-cb0f15817646d7c2e222abad3e7cd1f0713b569e.zip
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.
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/unixODBCDrivers/default.nix2
1 files changed, 1 insertions, 1 deletions
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" ];