2017-09-22 11:48:13 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig
|
|
|
|
, openssl
|
2018-11-09 03:55:14 +00:00
|
|
|
, odbcSupport ? true, unixODBC ? null }:
|
2014-10-29 04:04:12 +00:00
|
|
|
|
|
|
|
assert odbcSupport -> unixODBC != null;
|
2011-11-10 22:20:48 +00:00
|
|
|
|
2018-05-04 05:41:44 +01:00
|
|
|
# Work is in progress to move to cmake so revisit that later
|
|
|
|
|
2015-05-18 07:43:26 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-09-22 11:48:13 +01:00
|
|
|
name = "freetds-${version}";
|
2019-05-05 08:58:20 +01:00
|
|
|
version = "1.1.6";
|
2011-11-10 22:20:48 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-09-22 11:48:13 +01:00
|
|
|
url = "http://www.freetds.org/files/stable/${name}.tar.bz2";
|
2019-05-05 08:58:20 +01:00
|
|
|
sha256 = "18rry59npbhxpzjb0l3ib7zlnlzj43srb5adcm65wyklklsh0gn2";
|
2011-11-10 22:20:48 +00:00
|
|
|
};
|
|
|
|
|
2017-09-22 11:48:13 +01:00
|
|
|
buildInputs = [
|
|
|
|
openssl
|
|
|
|
] ++ stdenv.lib.optional odbcSupport unixODBC;
|
2014-10-29 04:04:12 +00:00
|
|
|
|
2017-09-22 11:48:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2014-10-29 04:04:12 +00:00
|
|
|
|
2017-09-22 11:48:13 +01:00
|
|
|
enableParallelBuilding = true;
|
2014-06-11 11:58:40 +01:00
|
|
|
|
2017-09-22 11:48:13 +01: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;
|
2011-11-10 22:20:48 +00:00
|
|
|
};
|
|
|
|
}
|