nixpkgs/pkgs/development/libraries/libdbi-drivers/default.nix

64 lines
1.6 KiB
Nix
Raw Normal View History

2015-03-11 22:28:01 +00:00
{ stdenv, fetchurl, libdbi
2017-12-28 08:54:41 +00:00
, mysql ? null
, sqlite ? null
, postgresql ? null
2015-03-11 22:28:01 +00:00
}:
2015-03-11 22:28:01 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
2015-03-11 22:28:01 +00:00
name = "libdbi-drivers-0.9.0";
src = fetchurl {
url = "mirror://sourceforge/libdbi-drivers/${name}.tar.gz";
2015-03-11 22:28:01 +00:00
sha256 = "0m680h8cc4428xin4p733azysamzgzcmv4psjvraykrsaz6ymlj3";
};
2017-12-25 17:08:09 +00:00
buildInputs = [ libdbi sqlite postgresql ] ++ optional (mysql != null) mysql.connector-c;
2015-03-11 22:28:01 +00:00
postPatch = ''
sed -i '/SQLITE3_LIBS/ s/-lsqlite/-lsqlite3/' configure;
'';
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
"--disable-docs"
"--enable-libdbi"
"--with-dbi-incdir=${libdbi}/include"
"--with-dbi-libdir=${libdbi}/lib"
2017-12-25 17:08:09 +00:00
] ++ optionals (mysql != null) [
2015-03-11 22:28:01 +00:00
"--with-mysql"
2017-12-28 08:54:41 +00:00
"--with-mysql-incdir=${mysql.connector-c}/include/mysql"
"--with-mysql-libdir=${mysql.connector-c}/lib/mysql"
2015-03-11 22:28:01 +00:00
] ++ optionals (sqlite != null) [
"--with-sqlite3"
2015-10-13 20:30:30 +00:00
"--with-sqlite3-incdir=${sqlite.dev}/include/sqlite"
"--with-sqlite3-libdir=${sqlite.out}/lib/sqlite"
2017-12-28 08:54:41 +00:00
] ++ optionals (postgresql != null) [
"--with-pgsql"
"--with-pgsql_incdir=${postgresql}/include"
"--with-pgsql_libdir=${postgresql.lib}/lib"
2015-03-11 22:28:01 +00:00
];
installFlags = [ "DESTDIR=\${out}" ];
postInstall = ''
mv $out/$out/* $out
DIR=$out/$out
while rmdir $DIR 2>/dev/null; do
DIR="$(dirname "$DIR")"
done
# Remove the unneeded var/lib directories
rm -rf $out/var
'';
meta = {
2015-03-11 22:28:01 +00:00
homepage = http://libdbi-drivers.sourceforge.net/;
description = "Database drivers for libdbi";
2015-03-11 22:28:01 +00:00
platforms = platforms.all;
license = licenses.lgpl21;
maintainers = with maintainers; [ wkennington ];
};
}