rogue: Add alternative source archive URLs.

As of right now, rogue.rogueforge.net has been down for at least several hours
(likely more).
We add two mirrors here which are likely to be more reliable. We keep the
original download location as a fallback, in case that estimate turns out to be
incorrect.
This commit is contained in:
Sebastian Hagen 2016-11-26 19:23:37 +00:00
parent 2d679dbe74
commit aad48be62b

View file

@ -4,7 +4,11 @@ stdenv.mkDerivation {
name = "rogue-5.4.4";
src = fetchurl {
url = http://rogue.rogueforge.net/files/rogue5.4/rogue5.4.4-src.tar.gz;
urls = [
"http://pkgs.fedoraproject.org/repo/pkgs/rogue/rogue5.4.4-src.tar.gz/033288f46444b06814c81ea69d96e075/rogue5.4.4-src.tar.gz"
"http://ftp.vim.org/ftp/pub/ftp/os/Linux/distr/slitaz/sources/packages-cooking/r/rogue5.4.4-src.tar.gz"
"http://rogue.rogueforge.net/files/rogue5.4/rogue5.4.4-src.tar.gz"
];
sha256 = "18g81274d0f7sr04p7h7irz0d53j6kd9j1y3zbka1gcqq0gscdvx";
};