about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/freetds
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/freetds')
-rw-r--r--nixpkgs/pkgs/development/libraries/freetds/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/freetds/default.nix b/nixpkgs/pkgs/development/libraries/freetds/default.nix
new file mode 100644
index 000000000000..cd9e99b352eb
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/freetds/default.nix
@@ -0,0 +1,31 @@
+{ lib, stdenv, fetchurl, autoreconfHook, pkg-config
+, openssl
+, odbcSupport ? true, unixODBC ? null }:
+
+assert odbcSupport -> unixODBC != null;
+
+# Work is in progress to move to cmake so revisit that later
+
+stdenv.mkDerivation rec {
+  pname = "freetds";
+  version = "1.3.18";
+
+  src = fetchurl {
+    url    = "https://www.freetds.org/files/stable/${pname}-${version}.tar.bz2";
+    sha256 = "sha256-HYVh1XxxmRoo9GgTQ3hcI6aj61TVvNI4l9B+OCX/LVY=";
+  };
+
+  buildInputs = [
+    openssl
+  ] ++ lib.optional odbcSupport unixODBC;
+
+  nativeBuildInputs = [ autoreconfHook pkg-config ];
+
+  meta = with lib; {
+    description = "Libraries to natively talk to Microsoft SQL Server and Sybase databases";
+    homepage    = "https://www.freetds.org";
+    license     = licenses.lgpl2;
+    maintainers = with maintainers; [ peterhoeg ];
+    platforms   = platforms.all;
+  };
+}