mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
d161032cc1
svn path=/nixpkgs/trunk/; revision=30431
21 lines
524 B
Nix
21 lines
524 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "freetds-0.91";
|
|
|
|
src = fetchurl {
|
|
url = ftp://ftp.ibiblio.org/pub/Linux/ALPHA/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";
|
|
maintainers = [ stdenv.lib.maintainers.shlevy ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|
|
|