Use mirror:// URIs for ftp.debian.org

Provide a more robust experience for users with horrible network
hardware (me).
This commit is contained in:
Tobias Geerinckx-Rice
2015-05-22 10:39:27 +02:00
parent 188a067d8e
commit 5d5044b2ec
7 changed files with 9 additions and 9 deletions
@@ -2,14 +2,14 @@
let
patch = fetchurl {
url = http://ftp.debian.org/debian/pool/main/libr/libresample/libresample_0.1.3-3.diff.gz;
url = mirror://debian/pool/main/libr/libresample/libresample_0.1.3-3.diff.gz;
sha256 = "063w8rqxw87fc89gas47vk0ll7xl8cy7d8g70gm1l62bqkkajklx";
};
in
stdenv.mkDerivation {
name = "libresample-0.1.3";
src = fetchurl {
url = http://ftp.debian.org/debian/pool/main/libr/libresample/libresample_0.1.3.orig.tar.gz;
url = mirror://debian/pool/main/libr/libresample/libresample_0.1.3.orig.tar.gz;
sha256 = "05a8mmh1bw5afqx0kfdqzmph4x2npcs4idx0p0v6q95lwf22l8i0";
};
patches = [ patch ];