1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 18:12:46 +00:00
nixpkgs/pkgs/development/libraries/freetds/default.nix

34 lines
904 B
Nix
Raw Normal View History

2017-09-22 11:48:13 +01:00
{ stdenv, fetchurl, autoreconfHook, pkgconfig
, openssl
, odbcSupport ? true, unixODBC ? null }:
assert odbcSupport -> unixODBC != null;
2018-05-04 05:41:44 +01:00
# Work is in progress to move to cmake so revisit that later
2015-05-18 07:43:26 +01:00
stdenv.mkDerivation rec {
pname = "freetds";
2020-06-16 00:27:35 +01:00
version = "1.1.42";
src = fetchurl {
url = "https://www.freetds.org/files/stable/${pname}-${version}.tar.bz2";
2020-06-16 00:27:35 +01:00
sha256 = "02phnk88zv4f8byx954784w8mh33knsslwvj266jfyrmxz6hxxxg";
};
2017-09-22 11:48:13 +01:00
buildInputs = [
openssl
] ++ stdenv.lib.optional odbcSupport unixODBC;
2017-09-22 11:48:13 +01:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2017-09-22 11:48:13 +01:00
enableParallelBuilding = true;
2017-09-22 11:48:13 +01:00
meta = with stdenv.lib; {
description = "Libraries to natively talk to Microsoft SQL Server and Sybase databases";
homepage = "https://www.freetds.org";
2017-09-22 11:48:13 +01:00
license = licenses.lgpl2;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.all;
};
}