summary refs log tree commit diff
path: root/pkgs/development/libraries/libresample
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-21 23:52:24 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-22 10:39:27 +0200
commit5d5044b2ecc98a19262fd2f37f123188363e7b73 (patch)
tree560da2f58be8712231a303e8c14c2931768546bf /pkgs/development/libraries/libresample
parent188a067d8e30b2521c74b9d043a74d98b5cb5e85 (diff)
downloadnixpkgs-5d5044b2ecc98a19262fd2f37f123188363e7b73.tar
nixpkgs-5d5044b2ecc98a19262fd2f37f123188363e7b73.tar.gz
nixpkgs-5d5044b2ecc98a19262fd2f37f123188363e7b73.tar.bz2
nixpkgs-5d5044b2ecc98a19262fd2f37f123188363e7b73.tar.lz
nixpkgs-5d5044b2ecc98a19262fd2f37f123188363e7b73.tar.xz
nixpkgs-5d5044b2ecc98a19262fd2f37f123188363e7b73.tar.zst
nixpkgs-5d5044b2ecc98a19262fd2f37f123188363e7b73.zip
Use mirror:// URIs for ftp.debian.org
Provide a more robust experience for users with horrible network
hardware (me).
Diffstat (limited to 'pkgs/development/libraries/libresample')
-rw-r--r--pkgs/development/libraries/libresample/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libresample/default.nix b/pkgs/development/libraries/libresample/default.nix
index e8d4f98028f..831292bf1d9 100644
--- a/pkgs/development/libraries/libresample/default.nix
+++ b/pkgs/development/libraries/libresample/default.nix
@@ -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 ];