2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config
|
2017-09-22 11:48:13 +01:00
|
|
|
, 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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "freetds";
|
2021-02-04 10:20:27 +00:00
|
|
|
version = "1.2.18";
|
2011-11-10 22:20:48 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://www.freetds.org/files/stable/${pname}-${version}.tar.bz2";
|
2021-02-04 10:20:27 +00:00
|
|
|
sha256 = "sha256-ENR+YJhs/FH4Fw+p6rpDEU7r3eC6bmscSBPYbwIaqt0=";
|
2011-11-10 22:20:48 +00:00
|
|
|
};
|
|
|
|
|
2017-09-22 11:48:13 +01:00
|
|
|
buildInputs = [
|
|
|
|
openssl
|
2021-01-21 17:00:13 +00:00
|
|
|
] ++ lib.optional odbcSupport unixODBC;
|
2014-10-29 04:04:12 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2014-10-29 04:04:12 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2017-09-22 11:48:13 +01:00
|
|
|
description = "Libraries to natively talk to Microsoft SQL Server and Sybase databases";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.freetds.org";
|
2017-09-22 11:48:13 +01:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.all;
|
2011-11-10 22:20:48 +00:00
|
|
|
};
|
|
|
|
}
|