3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #39963 from peterhoeg/u/freetds

freetds: 1.00.80 -> 1.00.91
This commit is contained in:
xeji 2018-05-04 22:40:50 +02:00 committed by GitHub
commit 45788b4540
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,19 +4,17 @@
assert odbcSupport -> unixODBC != null;
# Work is in progress to move to cmake so revisit that later
stdenv.mkDerivation rec {
name = "freetds-${version}";
version = "1.00.80";
version = "1.00.91";
src = fetchurl {
url = "http://www.freetds.org/files/stable/${name}.tar.bz2";
sha256 = "17s15avxcyhfk0zsj8rggizhpd2j2sa41w5xlnshzd2r3piqyl6k";
sha256 = "04c344xdvh2j36r01ph7yhy5rb1668il0z9vyphwdy6qqwywh622";
};
configureFlags = [
"--with-tdsver=7.3"
];
buildInputs = [
openssl
] ++ stdenv.lib.optional odbcSupport unixODBC;