mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Add freetds
svn path=/nixpkgs/trunk/; revision=30378
This commit is contained in:
parent
8ce410c6f3
commit
e8b1259990
2 changed files with 24 additions and 0 deletions
22
pkgs/development/libraries/freetds/default.nix
Normal file
22
pkgs/development/libraries/freetds/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ 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 = ''
|
||||
A set of 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;
|
||||
};
|
||||
}
|
||||
|
|
@ -676,6 +676,8 @@ let
|
|||
guile = guile_1_8;
|
||||
};
|
||||
|
||||
freetds = callPackage ../development/libraries/freetds { };
|
||||
|
||||
ftgl = callPackage ../development/libraries/ftgl { };
|
||||
|
||||
fuppes = callPackage ../tools/networking/fuppes {
|
||||
|
|
Loading…
Reference in a new issue