summary refs log blame commit diff
path: root/pkgs/development/libraries/freetds/default.nix
blob: d764121e8d6bece583401718f0283029121b9abb (plain) (tree)
1
2
3
4
5
6
7
8
9

                                             


                                         
 
                         

                              

                  

                                                                    

    


                       
 


                                                
 
                                                   
 
                                
 





                                                                                            

    
{ stdenv, fetchurl, autoreconfHook, pkgconfig
, openssl
, odbcSupport ? false, unixODBC ? null }:

assert odbcSupport -> unixODBC != null;

stdenv.mkDerivation rec {
  name = "freetds-${version}";
  version = "1.00.70";

  src = fetchurl {
    url    = "http://www.freetds.org/files/stable/${name}.tar.bz2";
    sha256 = "1ydh0c89nb6wh6wakbkqad7mdwpymygvgbcrk8c2mp7abgv1jqzp";
  };

  configureFlags = [
    "--with-tdsver=7.3"
  ];

  buildInputs = [
    openssl
  ] ++ stdenv.lib.optional odbcSupport unixODBC;

  nativeBuildInputs = [ autoreconfHook pkgconfig ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Libraries to natively talk to Microsoft SQL Server and Sybase databases";
    homepage    = http://www.freetds.org;
    license     = licenses.lgpl2;
    maintainers = with maintainers; [ peterhoeg ];
    platforms   = platforms.all;
  };
}