freetds: 0.91 -> 1.00.62
This commit is contained in:
parent
178a96f99b
commit
3ba45dd220
@ -1,34 +1,35 @@
|
|||||||
{ stdenv, fetchurl
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig
|
||||||
|
, 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-0.91";
|
name = "freetds-${version}";
|
||||||
|
version = "1.00.62";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://mirrors.ibiblio.org/freetds/stable/${name}.tar.gz";
|
url = "http://www.freetds.org/files/stable/${name}.tar.bz2";
|
||||||
sha256 = "0r946axzxs0czsmr7283w7vmk5jx3jnxxc32d2ncxsrsh2yli0ba";
|
sha256 = "10d1rjflp3gkmgk5zlv2ck23p0fgpxrgf1jhfv9pvy3q02h9ldis";
|
||||||
};
|
};
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
configureFlags = [
|
||||||
|
"--with-tdsver=7.0"
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = stdenv.lib.optional odbcSupport [ unixODBC ];
|
buildInputs = [
|
||||||
|
openssl
|
||||||
|
] ++ stdenv.lib.optional odbcSupport unixODBC;
|
||||||
|
|
||||||
configureFlags = stdenv.lib.optionalString odbcSupport "--with-odbc=${unixODBC}";
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
|
||||||
doDist = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
distPhase = ''
|
meta = with stdenv.lib; {
|
||||||
touch $out/include/tds.h
|
description = "Libraries to natively talk to Microsoft SQL Server and Sybase databases";
|
||||||
touch $out/lib/libtds.a
|
homepage = http://www.freetds.org;
|
||||||
'';
|
license = licenses.lgpl2;
|
||||||
|
maintainers = with maintainers; [ peterhoeg ];
|
||||||
meta = {
|
platforms = platforms.all;
|
||||||
description =
|
|
||||||
"Libraries to natively talk to Microsoft SQL Server and Sybase databases";
|
|
||||||
homepage = http://www.freetds.org;
|
|
||||||
license = "lgpl";
|
|
||||||
platforms = stdenv.lib.platforms.all;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user