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-10-14 14:38:04 +0800
commit3ba45dd220019af6a230282e884415f35758cb9d (patch)
tree0cf741db288f6cfe3650ccd1caef4a898a8ae16d /pkgs/development/libraries/freetds
parent178a96f99be69a173669254295d5a06732e7a906 (diff)
downloadnixpkgs-3ba45dd220019af6a230282e884415f35758cb9d.tar
nixpkgs-3ba45dd220019af6a230282e884415f35758cb9d.tar.gz
nixpkgs-3ba45dd220019af6a230282e884415f35758cb9d.tar.bz2
nixpkgs-3ba45dd220019af6a230282e884415f35758cb9d.tar.lz
nixpkgs-3ba45dd220019af6a230282e884415f35758cb9d.tar.xz
nixpkgs-3ba45dd220019af6a230282e884415f35758cb9d.tar.zst
nixpkgs-3ba45dd220019af6a230282e884415f35758cb9d.zip
freetds: 0.91 -> 1.00.62
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..faf20bda4d9 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.62";
 
   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 = "10d1rjflp3gkmgk5zlv2ck23p0fgpxrgf1jhfv9pvy3q02h9ldis";
   };
 
-  hardeningDisable = [ "format" ];
+  configureFlags = [
+    "--with-tdsver=7.0"
+  ];
 
-  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;
   };
 }