summary refs log tree commit diff
path: root/pkgs/development/libraries/freetds
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-09-22 18:48:13 +0800
committerPeter Hoeg <peter@hoeg.com>2017-11-06 12:26:03 +0800
commit8b0014ae5ac042b2308d5c008513b513e72acbc5 (patch)
tree0b1ac0b46cb6838bfc1ad4f8e558c1c37d255ba4 /pkgs/development/libraries/freetds
parentcfafd6f5a819472911eaf2650b50a62f0c143e3e (diff)
downloadnixpkgs-8b0014ae5ac042b2308d5c008513b513e72acbc5.tar
nixpkgs-8b0014ae5ac042b2308d5c008513b513e72acbc5.tar.gz
nixpkgs-8b0014ae5ac042b2308d5c008513b513e72acbc5.tar.bz2
nixpkgs-8b0014ae5ac042b2308d5c008513b513e72acbc5.tar.lz
nixpkgs-8b0014ae5ac042b2308d5c008513b513e72acbc5.tar.xz
nixpkgs-8b0014ae5ac042b2308d5c008513b513e72acbc5.tar.zst
nixpkgs-8b0014ae5ac042b2308d5c008513b513e72acbc5.zip
freetds: 0.91 -> 1.00.70
Diffstat (limited to 'pkgs/development/libraries/freetds')
-rw-r--r--pkgs/development/libraries/freetds/default.nix39
1 files changed, 20 insertions, 19 deletions
diff --git a/pkgs/development/libraries/freetds/default.nix b/pkgs/development/libraries/freetds/default.nix
index 2e06c3bbec7..d764121e8d6 100644
--- a/pkgs/development/libraries/freetds/default.nix
+++ b/pkgs/development/libraries/freetds/default.nix
@@ -1,34 +1,35 @@
-{ stdenv, fetchurl
+{ stdenv, fetchurl, autoreconfHook, pkgconfig
+, openssl
 , odbcSupport ? false, unixODBC ? null }:
 
 assert odbcSupport -> unixODBC != null;
 
 stdenv.mkDerivation rec {
-  name = "freetds-0.91";
+  name = "freetds-${version}";
+  version = "1.00.70";
 
   src = fetchurl {
-    url = "http://mirrors.ibiblio.org/freetds/stable/${name}.tar.gz";
-    sha256 = "0r946axzxs0czsmr7283w7vmk5jx3jnxxc32d2ncxsrsh2yli0ba";
+    url    = "http://www.freetds.org/files/stable/${name}.tar.bz2";
+    sha256 = "1ydh0c89nb6wh6wakbkqad7mdwpymygvgbcrk8c2mp7abgv1jqzp";
   };
 
-  hardeningDisable = [ "format" ];
+  configureFlags = [
+    "--with-tdsver=7.3"
+  ];
 
-  buildInputs = stdenv.lib.optional odbcSupport [ unixODBC ];
+  buildInputs = [
+    openssl
+  ] ++ stdenv.lib.optional odbcSupport unixODBC;
 
-  configureFlags = stdenv.lib.optionalString odbcSupport "--with-odbc=${unixODBC}";
+  nativeBuildInputs = [ autoreconfHook pkgconfig ];
 
-  doDist = true;
+  enableParallelBuilding = true;
 
-  distPhase = ''
-    touch $out/include/tds.h
-    touch $out/lib/libtds.a
-  '';
-
-  meta = {
-    description =
-      "Libraries to natively talk to Microsoft SQL Server and Sybase databases";
-    homepage = http://www.freetds.org;
-    license = "lgpl";
-    platforms = stdenv.lib.platforms.all;
+  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;
   };
 }