freetds: fix broken url (close #9031)

This commit is contained in:
Allen Nelson 2015-07-27 11:42:41 -05:00 committed by Vladimír Čunát
parent 37e554828d
commit 3c6c6c19f2

View File

@ -4,11 +4,11 @@
assert odbcSupport -> unixODBC != null;
stdenv.mkDerivation rec {
name = "freetds-0.91.112";
name = "freetds-0.91";
src = fetchurl {
url = "ftp://ftp.astron.com/pub/freetds/stable/${name}.tar.gz";
sha256 = "be4f04ee57328c32e7e7cd7e2e1483e535071cec6101e46b9dd15b857c5078ed";
url = "http://mirrors.ibiblio.org/freetds/stable/${name}.tar.gz";
sha256 = "0r946axzxs0czsmr7283w7vmk5jx3jnxxc32d2ncxsrsh2yli0ba";
};
buildInputs = stdenv.lib.optional odbcSupport [ unixODBC ];
@ -30,4 +30,3 @@ stdenv.mkDerivation rec {
platforms = stdenv.lib.platforms.all;
};
}