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

32 lines
863 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, pkg-config
2017-09-22 03:48:13 -07:00
, openssl
, odbcSupport ? true, unixODBC ? null }:
assert odbcSupport -> unixODBC != null;
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 {
pname = "freetds";
2020-06-15 16:27:35 -07:00
version = "1.1.42";
src = fetchurl {
url = "https://www.freetds.org/files/stable/${pname}-${version}.tar.bz2";
2020-06-15 16:27:35 -07:00
sha256 = "02phnk88zv4f8byx954784w8mh33knsslwvj266jfyrmxz6hxxxg";
};
2017-09-22 03:48:13 -07:00
buildInputs = [
openssl
] ++ lib.optional odbcSupport unixODBC;
nativeBuildInputs = [ autoreconfHook pkg-config ];
meta = with lib; {
2017-09-22 03:48:13 -07:00
description = "Libraries to natively talk to Microsoft SQL Server and Sybase databases";
homepage = "https://www.freetds.org";
2017-09-22 03:48:13 -07:00
license = licenses.lgpl2;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.all;
};
}