2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config
|
2017-09-22 03:48:13 -07:00
|
|
|
, openssl
|
2018-11-08 19:55:14 -08:00
|
|
|
, odbcSupport ? true, unixODBC ? null }:
|
2014-10-28 21:04:12 -07:00
|
|
|
|
|
|
|
assert odbcSupport -> unixODBC != null;
|
2011-11-10 14:20:48 -08:00
|
|
|
|
2018-05-03 21:41:44 -07:00
|
|
|
# Work is in progress to move to cmake so revisit that later
|
|
|
|
|
2015-05-17 23:43:26 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "freetds";
|
2020-06-15 16:27:35 -07:00
|
|
|
version = "1.1.42";
|
2011-11-10 14:20:48 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://www.freetds.org/files/stable/${pname}-${version}.tar.bz2";
|
2020-06-15 16:27:35 -07:00
|
|
|
sha256 = "02phnk88zv4f8byx954784w8mh33knsslwvj266jfyrmxz6hxxxg";
|
2011-11-10 14:20:48 -08:00
|
|
|
};
|
|
|
|
|
2017-09-22 03:48:13 -07:00
|
|
|
buildInputs = [
|
|
|
|
openssl
|
2021-01-21 09:00:13 -08:00
|
|
|
] ++ lib.optional odbcSupport unixODBC;
|
2014-10-28 21:04:12 -07:00
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2014-10-28 21:04:12 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2017-09-22 03:48:13 -07:00
|
|
|
description = "Libraries to natively talk to Microsoft SQL Server and Sybase databases";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.freetds.org";
|
2017-09-22 03:48:13 -07:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.all;
|
2011-11-10 14:20:48 -08:00
|
|
|
};
|
|
|
|
}
|