mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
ca116f76f9
Trying to take maintainership more seriously... Signed-off-by: Shea Levy <shea@shealevy.com>
20 lines
458 B
Nix
20 lines
458 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "freetds-0.91";
|
|
|
|
src = fetchurl {
|
|
url = ftp://ftp.astron.com/pub/freetds/stable/freetds-stable.tgz;
|
|
sha256 = "0r946axzxs0czsmr7283w7vmk5jx3jnxxc32d2ncxsrsh2yli0ba";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|
|
|