mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
psqlodbc: 09.01.0200 -> 13.00.0000
This commit is contained in:
parent
4a29096075
commit
af20d738ae
@ -2,21 +2,25 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "psqlodbc";
|
||||
version = "09.01.0200";
|
||||
version = "13.02.0000";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://ftp.postgresql.org/pub/odbc/versions/src/${pname}-${version}.tar.gz";
|
||||
sha256 = "0b4w1ahfpp34jpscfk2kv9050lh3xl9pvcysqvaigkcd0vsk1hl9";
|
||||
url = "https://ftp.postgresql.org/pub/odbc/versions/src/psqlodbc-${version}.tar.gz";
|
||||
hash = "sha256-s5t+XEH9ZHXFUREvpyS/V8SkRhdexBiKkOKETMFhJYU=";
|
||||
};
|
||||
|
||||
buildInputs = [ libiodbc postgresql openssl ];
|
||||
|
||||
configureFlags = [ "--with-iodbc=${libiodbc}" ];
|
||||
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; [ ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user