Revert "freetds: 0.91 -> 1.00.62"

This reverts commit 3ba45dd220019af6a230282e884415f35758cb9d.
This commit is contained in:
Peter Hoeg 2017-10-14 14:40:48 +08:00
parent 85e7bbb285
commit 56db212f21

View File

@ -1,35 +1,34 @@
{ stdenv, fetchurl, autoreconfHook, pkgconfig { stdenv, fetchurl
, openssl
, odbcSupport ? false, unixODBC ? null }: , odbcSupport ? false, unixODBC ? null }:
assert odbcSupport -> unixODBC != null; assert odbcSupport -> unixODBC != null;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "freetds-${version}"; name = "freetds-0.91";
version = "1.00.62";
src = fetchurl { src = fetchurl {
url = "http://www.freetds.org/files/stable/${name}.tar.bz2"; url = "http://mirrors.ibiblio.org/freetds/stable/${name}.tar.gz";
sha256 = "10d1rjflp3gkmgk5zlv2ck23p0fgpxrgf1jhfv9pvy3q02h9ldis"; sha256 = "0r946axzxs0czsmr7283w7vmk5jx3jnxxc32d2ncxsrsh2yli0ba";
}; };
configureFlags = [ hardeningDisable = [ "format" ];
"--with-tdsver=7.0"
];
buildInputs = [ buildInputs = stdenv.lib.optional odbcSupport [ unixODBC ];
openssl
] ++ stdenv.lib.optional odbcSupport unixODBC;
nativeBuildInputs = [ autoreconfHook pkgconfig ]; configureFlags = stdenv.lib.optionalString odbcSupport "--with-odbc=${unixODBC}";
enableParallelBuilding = true; doDist = true;
meta = with stdenv.lib; { distPhase = ''
description = "Libraries to natively talk to Microsoft SQL Server and Sybase databases"; touch $out/include/tds.h
homepage = http://www.freetds.org; touch $out/lib/libtds.a
license = licenses.lgpl2; '';
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.all; meta = {
description =
"Libraries to natively talk to Microsoft SQL Server and Sybase databases";
homepage = http://www.freetds.org;
license = "lgpl";
platforms = stdenv.lib.platforms.all;
}; };
} }