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

36 lines
889 B
Nix
Raw Normal View History

2017-09-22 12:48:13 +02:00
{ stdenv, fetchurl, autoreconfHook, pkgconfig
, openssl
, odbcSupport ? false, unixODBC ? null }:
assert odbcSupport -> unixODBC != null;
2015-05-18 08:43:26 +02:00
stdenv.mkDerivation rec {
2017-09-22 12:48:13 +02:00
name = "freetds-${version}";
version = "1.00.62";
src = fetchurl {
2017-09-22 12:48:13 +02:00
url = "http://www.freetds.org/files/stable/${name}.tar.bz2";
sha256 = "10d1rjflp3gkmgk5zlv2ck23p0fgpxrgf1jhfv9pvy3q02h9ldis";
};
2017-09-22 12:48:13 +02:00
configureFlags = [
"--with-tdsver=7.0"
];
2016-02-07 17:22:44 +01:00
2017-09-22 12:48:13 +02:00
buildInputs = [
openssl
] ++ stdenv.lib.optional odbcSupport unixODBC;
2017-09-22 12:48:13 +02:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2017-09-22 12:48:13 +02:00
enableParallelBuilding = true;
2017-09-22 12:48:13 +02:00
meta = with stdenv.lib; {
description = "Libraries to natively talk to Microsoft SQL Server and Sybase databases";
homepage = http://www.freetds.org;
license = licenses.lgpl2;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.all;
};
}