Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8fe162051346
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cbaac4062358
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 2, 2018

  1. unixODBCDrivers.msodbcsql17: init at 17.2.0.1 (#44140)

    * unixODBCDrivers.msodbcsql17: init at 17.2.0.1
    
    * unixODBCDrivers.msodbcsql17: use autoPatchelfHook
    
    * unixODBCDrivers.msodbcsql17: use getLib
    spencerjanssen authored and matthewbauer committed Aug 2, 2018
    Copy the full SHA
    cbaac40 View commit details
Showing with 42 additions and 1 deletion.
  1. +42 −1 pkgs/development/libraries/unixODBCDrivers/default.nix
43 changes: 42 additions & 1 deletion pkgs/development/libraries/unixODBCDrivers/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ fetchurl, stdenv, unixODBC, cmake, postgresql, mysql55, mariadb, sqlite, zlib, libxml2 }:
{ fetchurl, stdenv, unixODBC, cmake, postgresql, mysql55, mariadb, sqlite, zlib, libxml2, dpkg, lib, openssl, kerberos, curl, libuuid, autoPatchelfHook }:

# I haven't done any parameter tweaking.. So the defaults provided here might be bad

@@ -119,4 +119,45 @@
maintainers = with maintainers; [ vlstill ];
};
};

msodbcsql17 = stdenv.mkDerivation rec {
name = "msodbcsql17-${version}";
version = "${versionMajor}.${versionMinor}.${versionAdditional}-1";

versionMajor = "17";
versionMinor = "2";
versionAdditional = "0.1";

src = fetchurl {
url = "https://packages.microsoft.com/debian/9/prod/pool/main/m/msodbcsql17/msodbcsql${versionMajor}_${version}_amd64.deb";
sha256 = "1966ymbbk0jsacqwzi3dmhxv2n8hfgnpjsx3hr3n7s9d88chgpx5";
};

nativeBuildInputs = [ autoPatchelfHook ];
buildInputs = [ unixODBC dpkg openssl kerberos curl libuuid stdenv.cc.cc ];

unpackPhase = "dpkg -x $src ./";
buildPhase = "";

installPhase = ''
mkdir -p $out
mkdir -p $out/lib
ln -s ${lib.getLib openssl}/lib/libssl.so.1.0.0 $out/lib/libssl.so.1.0.2
ln -s ${lib.getLib openssl}/lib/libcrypto.so.1.0.0 $out/lib/libcrypto.so.1.0.2
cp -r opt/microsoft/msodbcsql${versionMajor}/lib64 opt/microsoft/msodbcsql${versionMajor}/share $out/
'';

passthru = {
fancyName = "ODBC Driver 17 for SQL Server";
driver = "lib/libmsodbcsql-${versionMajor}.${versionMinor}.so.${versionAdditional}";
};

meta = with stdenv.lib; {
description = "ODBC Driver 17 for SQL Server";
homepage = https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-2017;
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with maintainers; [ spencerjanssen ];
};
};
}