Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f1cab34f9415
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 721f2b9fb2fe
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 28, 2016

  1. 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.
    
    (cherry picked from commit aad48be)
    sh01 committed Nov 28, 2016
    Copy the full SHA
    6034390 View commit details
  2. Merge pull request #20761 from sh01/cp_rogue_mirror

    rogue: Add alternative source archive URLs. (16.09)
    grahamc authored Nov 28, 2016
    Copy the full SHA
    721f2b9 View commit details
Showing with 5 additions and 1 deletion.
  1. +5 −1 pkgs/games/rogue/default.nix
6 changes: 5 additions & 1 deletion pkgs/games/rogue/default.nix
Original file line number Diff line number Diff line change
@@ -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";
};