From f9ea527a02773b33967bde2fe9675fb4d4d3c2e9 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Thu, 7 Sep 2017 19:12:10 +0200 Subject: factorio: use `throw` instead of `abort` Otherwise if you try to listing all available packages, you will get a hard error on platforms not supported by this package. Consequently the tarball job was broken. --- pkgs/games/factorio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/games') diff --git a/pkgs/games/factorio/default.nix b/pkgs/games/factorio/default.nix index e10d97a047b..5ca699c3317 100644 --- a/pkgs/games/factorio/default.nix +++ b/pkgs/games/factorio/default.nix @@ -26,7 +26,7 @@ let demo = bdist { }; }; }; - actual = binDists.${stdenv.system}.${releaseType}; + actual = binDists.${stdenv.system}.${releaseType} or throw "Factorio: unsupported platform"; bdistForArch = arch: { sha256 ? null , version ? "0.15.34" @@ -34,7 +34,7 @@ let , nameMut ? x: x }: if sha256 == null then - abort "Factorio ${releaseType}-${arch.inTar} binaries are not (and were never?) available to download" + throw "Factorio ${releaseType}-${arch.inTar} binaries are not (and were never?) available to download" else { inherit version arch; src = fetcher { -- cgit 1.4.1