mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 16:11:58 +00:00
libdbi-drivers: fix libmysqlclient include path
This commit is contained in:
parent
106616102d
commit
3510a5f13c
|
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
|||
"--with-dbi-libdir=${libdbi}/lib"
|
||||
] ++ optionals (libmysqlclient != null) [
|
||||
"--with-mysql"
|
||||
"--with-mysql-incdir=${libmysqlclient}/include/mysql"
|
||||
"--with-mysql-incdir=${getDev libmysqlclient}/include/mysql"
|
||||
"--with-mysql-libdir=${libmysqlclient}/lib/mysql"
|
||||
] ++ optionals (sqlite != null) [
|
||||
"--with-sqlite3"
|
||||
|
|
Loading…
Reference in a new issue