nixpkgs/pkgs/development/libraries/freetds/default.nix
Spencer Baugh 85d1e62ab5 freetds: enable odbcSupport by default
There is no reason not to, and some packages which I'm working on,
requires this.
2018-11-09 03:55:14 +00:00

34 lines
899 B
Nix

{ stdenv, fetchurl, autoreconfHook, pkgconfig
, openssl
, odbcSupport ? true, unixODBC ? null }:
assert odbcSupport -> unixODBC != null;
# Work is in progress to move to cmake so revisit that later
stdenv.mkDerivation rec {
name = "freetds-${version}";
version = "1.00.94";
src = fetchurl {
url = "http://www.freetds.org/files/stable/${name}.tar.bz2";
sha256 = "1r03ns0jp2sbbivys5bks376vbdqbnx8v764kjh74gpbajjmkksz";
};
buildInputs = [
openssl
] ++ stdenv.lib.optional odbcSupport unixODBC;
nativeBuildInputs = [ autoreconfHook pkgconfig ];
enableParallelBuilding = true;
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;
};
}