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: 9592e380c5ce
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b978ad890aaa
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 23, 2018

  1. ue4demos: fix download URLs

    http://ue4linux.raxxy.com/ has been down for a while.
    
    I mirrored the demos to https://ludios.org/mirror/ue4demos/ because
    Wayback transfer speeds can be slow.
    ivan committed Dec 23, 2018
    Copy the full SHA
    455a047 View commit details

Commits on Dec 24, 2018

  1. Merge pull request #52743 from ivan/ue4demos-urls

    ue4demos: fix download URLs
    veprbl authored Dec 24, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b978ad8 View commit details
Showing with 24 additions and 17 deletions.
  1. +24 −17 pkgs/games/ue4demos/default.nix
41 changes: 24 additions & 17 deletions pkgs/games/ue4demos/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{ stdenv, fetchurl, unzip, patchelf, xorg, openal }:

let
urls = file:
[
# Untrusted mirrors - do not update hashes
"https://ludios.org/mirror/ue4demos/${file}"
"http://web.archive.org/web/20140824192039/http://ue4linux.raxxy.com/${file}"
];

buildDemo = { name, src }:
stdenv.mkDerivation rec {
inherit name src;
@@ -53,135 +60,135 @@ in {
tappy_chicken = buildDemo rec {
name = "ue4demos-tappy_chicken";
src = fetchurl {
url = "http://ue4linux.raxxy.com/tappy_chicken.zip";
urls = urls "tappy_chicken.zip";
sha256 = "0lwhvk3lpb2r5ng2cnzk7fpjj5lwhy2sch1a8v154x1xfhfb3h4v";
};
};

swing_ninja = buildDemo rec {
name = "ue4demos-swing_ninja";
src = fetchurl {
url = "http://ue4linux.raxxy.com/swing_ninja.zip";
urls = urls "swing_ninja.zip";
sha256 = "1bmgqqk3lda5h7nnqi59jgyrsn0clr3xs0k1jclnqf9fk0m8hjcv";
};
};

card_game = buildDemo rec {
name = "ue4demos-card_game";
src = fetchurl {
url = "http://ue4linux.raxxy.com/card_game.zip";
urls = urls "card_game.zip";
sha256 = "154baqias5q7kad0c89k35jbmnmlm865sll02mi7bk1yllcckz5z";
};
};

vehicle_game = buildDemo rec {
name = "ue4demos-vehicle_game";
src = fetchurl {
url = "http://ue4linux.raxxy.com/vehicle_game.zip";
urls = urls "vehicle_game.zip";
sha256 = "03dlacf1iv7sgn7pl3sx9r6243wy8fsi2kd858syfm9slg0190bs";
};
};

shooter_game = buildDemo rec {
name = "ue4demos-shooter_game";
src = fetchurl {
url = "http://ue4linux.raxxy.com/shooter_game.zip";
urls = urls "shooter_game.zip";
sha256 = "1bk32k349iqbqk8x8jffnqq0pjiqmvrvv675xxmlvkkr8qrlhz98";
};
};

strategy_game = buildDemo rec {
name = "ue4demos-strategy_game";
src = fetchurl {
url = "http://ue4linux.raxxy.com/strategy_game.zip";
urls = urls "strategy_game.zip";
sha256 = "1p7i966v1ssm20y12g4wsccpgnky3szy19qyjlacynk7bgbk6lg7";
};
};

black_jack = buildDemo rec {
name = "ue4demos-black_jack";
src = fetchurl {
url = "http://ue4linux.raxxy.com/black_jack.zip";
urls = urls "black_jack.zip";
sha256 = "0g52wkzn5isa3az32y25yx5b56wxks97pajqwkmm6gf4qpkfksxv";
};
};

landscape_mountains = buildDemo rec {
name = "ue4demos-landscape_mountains";
src = fetchurl {
url = "http://ue4linux.raxxy.com/landscape_mountains.zip";
urls = urls "landscape_mountains.zip";
sha256 = "14jzajhs3cpydvf3ag7lpj4hkpbjpwnn3xkdvdx92fi0pcl8cwym";
};
};

matinee_demo = buildDemo rec {
name = "ue4demos-matinee_demo";
src = fetchurl {
url = "http://ue4linux.raxxy.com/matinee_demo.zip";
urls = urls "matinee_demo.zip";
sha256 = "0ib8k6fl15cxzdarar2sqq5v3g3c7p2jidkdjd00nym6cvkibb4d";
};
};

elemental_demo = buildDemo rec {
name = "ue4demos-elemental_demo";
src = fetchurl {
url = "http://ue4linux.raxxy.com/elemental_demo.zip";
urls = urls "elemental_demo.zip";
sha256 = "1v4jdsy8jvv8wgc8dx17q17xigfrya5q0nfdzw4md7fzm3bg9z0v";
};
};

effects_cave_demo = buildDemo rec {
name = "ue4demos-effects_cave_demo";
src = fetchurl {
url = "http://ue4linux.raxxy.com/effects_cave_demo.zip";
urls = urls "effects_cave_demo.zip";
sha256 = "0lvd3aaha2x9pnpkdmrzi6nf7hymr95834z3l8shygjf9kbbzsz4";
};
};

realistic_rendering = buildDemo rec {
name = "ue4demos-realistic_rendering";
src = fetchurl {
url = "http://ue4linux.raxxy.com/realistic_rendering_demo.zip";
urls = urls "realistic_rendering_demo.zip";
sha256 = "0r16nznkv475hkw5rnngqsc69ch8vh86dppyyyr9nn43dkr2110a";
};
};

reflections_subway = buildDemo rec {
name = "ue4demos-reflections_subway";
src = fetchurl {
url = "http://ue4linux.raxxy.com/reflections_subway_demo.zip";
urls = urls "reflections_subway_demo.zip";
sha256 = "0dw5sm7405gxw9iqz0vpnhdprrb4wl5i14pvzl1381k973m8bd00";
};
};

scifi_hallway_demo = buildDemo rec {
name = "ue4demos-scifi_hallway_demo";
src = fetchurl {
url = "http://ue4linux.raxxy.com/sci-fi_hallway_demo.zip";
urls = urls "sci-fi_hallway_demo.zip";
sha256 = "14qp9iwm47awn8d9j6ijh6cnds308x60xs4vi2fvz2666jlz1pq2";
};
};

mobile_temple_demo = buildDemo rec {
name = "ue4demos-mobile_temple_demo";
src = fetchurl {
url = "http://ue4linux.raxxy.com/mobile_temple_demo.zip";
urls = urls "mobile_temple_demo.zip";
sha256 = "12bz4h1b9lhmqglwsa6r8q48ijqbjdha9fql31540d01kigaka75";
};
};

stylized_demo = buildDemo rec {
name = "ue4demos-stylized_demo";
src = fetchurl {
url = "http://ue4linux.raxxy.com/stylized_demo.zip";
urls = urls "stylized_demo.zip";
sha256 = "1676ridmj8rk4y4hbdscfnnka5l636av1xxl0qwvk236kq9j7v0l";
};
};

blueprint_examples_demo = buildDemo rec {
name = "ue4demos-blueprint_examples_demo";
src = fetchurl {
url = "http://ue4linux.raxxy.com/blueprint_examples_demo.zip";
urls = urls "blueprint_examples_demo.zip";
sha256 = "076q33h2hy965fvr805hsprkpcmizf638lj2ik8k923v86b15nbv";
};
};