ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
41 lines
1,002 B
Nix
41 lines
1,002 B
Nix
{ lib, stdenv, fetchurl, postgresql, openssl
|
|
, withLibiodbc ? false, libiodbc
|
|
, withUnixODBC ? true, unixODBC
|
|
}:
|
|
|
|
assert lib.xor withLibiodbc withUnixODBC;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "psqlodbc";
|
|
version = "16.00.0000";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://postgresql/odbc/versions.old/src/${pname}-${version}.tar.gz";
|
|
hash = "sha256-r9iS+J0uzujT87IxTxvVvy0CIBhyxuNDHlwxCW7KTIs=";
|
|
};
|
|
|
|
buildInputs = [
|
|
postgresql
|
|
openssl
|
|
]
|
|
++ lib.optional withLibiodbc libiodbc
|
|
++ lib.optional withUnixODBC unixODBC;
|
|
|
|
passthru = lib.optionalAttrs withUnixODBC {
|
|
fancyName = "PostgreSQL";
|
|
driver = "lib/psqlodbcw.so";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--with-libpq=${lib.getDev postgresql}/bin/pg_config"
|
|
]
|
|
++ lib.optional withLibiodbc "--with-iodbc=${libiodbc}";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://odbc.postgresql.org/";
|
|
description = "ODBC driver for PostgreSQL";
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ ];
|
|
};
|
|
}
|