nixpkgs/pkgs/development/libraries/psqlodbc/default.nix

22 lines
589 B
Nix
Raw Normal View History

2012-10-08 21:26:02 +00:00
{ stdenv, fetchurl, libiodbc, postgresql, openssl }:
stdenv.mkDerivation rec {
name = "psqlodbc-09.01.0200";
src = fetchurl {
url = "https://ftp.postgresql.org/pub/odbc/versions/src/${name}.tar.gz";
2012-10-08 21:26:02 +00:00
sha256 = "0b4w1ahfpp34jpscfk2kv9050lh3xl9pvcysqvaigkcd0vsk1hl9";
};
buildInputs = [ libiodbc postgresql openssl ];
2018-07-25 21:44:21 +00:00
configureFlags = [ "--with-iodbc=${libiodbc}" ];
2012-10-08 21:26:02 +00:00
2015-06-10 11:00:11 +00:00
meta = with stdenv.lib; {
2012-10-08 21:26:02 +00:00
homepage = http://psqlodbc.projects.postgresql.org/;
description = "ODBC driver for PostgreSQL";
2015-06-10 11:00:11 +00:00
license = licenses.lgpl2;
platforms = platforms.linux;
2012-10-08 21:26:02 +00:00
};
}