mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
27 lines
707 B
Nix
27 lines
707 B
Nix
{ lib, stdenv, fetchurl, libiodbc, postgresql, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "psqlodbc";
|
|
version = "16.00.0000";
|
|
|
|
src = fetchurl {
|
|
url = "https://ftp.postgresql.org/pub/odbc/versions/src/psqlodbc-${version}.tar.gz";
|
|
hash = "sha256-r9iS+J0uzujT87IxTxvVvy0CIBhyxuNDHlwxCW7KTIs=";
|
|
};
|
|
|
|
buildInputs = [ libiodbc postgresql openssl ];
|
|
|
|
configureFlags = [
|
|
"--with-iodbc=${libiodbc}"
|
|
"--with-libpq=${lib.getDev postgresql}/bin/pg_config"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://odbc.postgresql.org/";
|
|
description = "ODBC driver for PostgreSQL";
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|