mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
libdbi-drivers: Use libmysql
This commit is contained in:
parent
618c051985
commit
5129c67fd3
@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchurl, libdbi
|
||||
, mysql ? null, sqlite ? null, postgresql ? null
|
||||
, libmysql ? null, sqlite ? null, postgresql ? null
|
||||
}:
|
||||
|
||||
with stdenv.lib;
|
||||
@ -11,8 +11,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0m680h8cc4428xin4p733azysamzgzcmv4psjvraykrsaz6ymlj3";
|
||||
};
|
||||
|
||||
buildInputs = [ libdbi sqlite postgresql ]
|
||||
++ optional (mysql != null) mysql.lib;
|
||||
buildInputs = [ libdbi libmysql sqlite postgresql ];
|
||||
|
||||
postPatch = ''
|
||||
sed -i '/SQLITE3_LIBS/ s/-lsqlite/-lsqlite3/' configure;
|
||||
@ -25,10 +24,10 @@ stdenv.mkDerivation rec {
|
||||
"--enable-libdbi"
|
||||
"--with-dbi-incdir=${libdbi}/include"
|
||||
"--with-dbi-libdir=${libdbi}/lib"
|
||||
] ++ optionals (mysql != null) [
|
||||
] ++ optionals (libmysql != null) [
|
||||
"--with-mysql"
|
||||
"--with-mysql-incdir=${mysql.lib}/include/mysql"
|
||||
"--with-mysql-libdir=${mysql.lib}/lib/mysql"
|
||||
"--with-mysql-incdir=${libmysql}/include/mysql"
|
||||
"--with-mysql-libdir=${libmysql}/lib/mysql"
|
||||
] ++ optionals (postgresql != null) [
|
||||
"--with-pgsql"
|
||||
"--with-pgsql_incdir=${postgresql}/include"
|
||||
|
@ -6342,7 +6342,7 @@ let
|
||||
libdbi = callPackage ../development/libraries/libdbi { };
|
||||
|
||||
libdbiDriversBase = callPackage ../development/libraries/libdbi-drivers {
|
||||
mysql = null;
|
||||
libmysql = null;
|
||||
sqlite = null;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user