summary refs log tree commit diff
path: root/pkgs/games/factorio
diff options
context:
space:
mode:
authorEric Litak <elitak@gmail.com>2017-04-24 17:11:02 -0700
committerEric Litak <elitak@gmail.com>2017-04-24 19:03:12 -0700
commit81122d3beb1934ebd83491ff204f2fca9cb25d39 (patch)
tree1155efe569184f35de70d1e7583d7c28e6b14201 /pkgs/games/factorio
parent3a083218b94ca8e0367b3d31eacd1bdd43b827d4 (diff)
downloadnixpkgs-81122d3beb1934ebd83491ff204f2fca9cb25d39.tar
nixpkgs-81122d3beb1934ebd83491ff204f2fca9cb25d39.tar.gz
nixpkgs-81122d3beb1934ebd83491ff204f2fca9cb25d39.tar.bz2
nixpkgs-81122d3beb1934ebd83491ff204f2fca9cb25d39.tar.lz
nixpkgs-81122d3beb1934ebd83491ff204f2fca9cb25d39.tar.xz
nixpkgs-81122d3beb1934ebd83491ff204f2fca9cb25d39.tar.zst
nixpkgs-81122d3beb1934ebd83491ff204f2fca9cb25d39.zip
factorio: 0.14.21 -> 0.15.1
Diffstat (limited to 'pkgs/games/factorio')
-rw-r--r--pkgs/games/factorio/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/games/factorio/default.nix b/pkgs/games/factorio/default.nix
index e071edfeb81..4a10015bea8 100644
--- a/pkgs/games/factorio/default.nix
+++ b/pkgs/games/factorio/default.nix
@@ -10,7 +10,7 @@ assert releaseType == "alpha" || releaseType == "headless";
 
 with stdenv.lib;
 let
-  version = "0.14.21";
+  version = "0.15.1";
   isHeadless = releaseType == "headless";
 
   arch = if stdenv.system == "x86_64-linux" then {
@@ -25,14 +25,14 @@ let
 
   fetch = rec {
     url = "https://www.factorio.com/get-download/${version}/${releaseType}/${arch.inUrl}";
-    name = "factorio_${releaseType}_${arch.inTar}-${version}.tar.gz";
+    name = "factorio_${releaseType}_${arch.inTar}-${version}.tar.xz";
     x64 = {
-      headless = fetchurl        { inherit name url; sha256 = "0bx4fq46781vv9vr0ciyckaskksjrqikvcdv1yz0wj8mrb2j08cw"; };
-      alpha = authenticatedFetch { inherit      url; sha256 = "067p1i5wcxk88kmblyklc4lh8fqjc5pqjdarvhjz420vqmdls7k6"; };
+      headless = fetchurl        { inherit name url; sha256 = "1z84a9yzlld6fv53viwvswp52hlc9fkxzhb2pil7sidzkws3g49l"; };
+      alpha = authenticatedFetch { inherit name url; sha256 = "11bxasghrhqb2yg1842v1608x3mjdjv3015jgifpv1xmcqak44jp"; };
     };
     i386 = {
       headless = abort "Factorio 32-bit headless binaries are not available for download.";
-      alpha = authenticatedFetch { inherit      url; sha256 = "0iwhachp0z02w19x5y70qy3b0yp79dspawkcygdfna5cfqrybvx6"; };
+      alpha = abort "Factorio 32-bit client is not available for this version.";
     };
   };