2011-11-10 22:20:48 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "freetds-0.91";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2013-09-12 19:54:11 +01:00
|
|
|
url = ftp://ftp.astron.com/pub/freetds/stable/freetds-stable.tgz;
|
2011-11-10 22:20:48 +00:00
|
|
|
sha256 = "0r946axzxs0czsmr7283w7vmk5jx3jnxxc32d2ncxsrsh2yli0ba";
|
|
|
|
};
|
|
|
|
|
2014-06-11 11:58:40 +01:00
|
|
|
doDist = true;
|
|
|
|
|
|
|
|
distPhase = ''
|
|
|
|
touch $out/include/tds.h
|
|
|
|
touch $out/lib/libtds.a
|
|
|
|
'';
|
|
|
|
|
2011-11-10 22:20:48 +00:00
|
|
|
meta = {
|
2011-11-14 20:27:09 +00:00
|
|
|
description =
|
|
|
|
"Libraries to natively talk to Microsoft SQL Server and Sybase databases";
|
2011-11-10 22:20:48 +00:00
|
|
|
homepage = "http://www.freetds.org";
|
|
|
|
license = "lgpl";
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|