about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/psqlodbc/default.nix
blob: d8c2b3dec1a4dbcc08c88f1289c547539854b869 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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; [ ];
  };
}