summary refs log tree commit diff
path: root/pkgs/games/factorio
diff options
context:
space:
mode:
authorEric Litak <elitak@gmail.com>2016-07-12 02:21:00 -0700
committerEric Litak <elitak@gmail.com>2016-07-12 05:03:51 -0700
commit2b47d24007c649414e59c884fe6d999a2b3990d1 (patch)
treeeffbb5d56bf96b871ff6531f6f17dd63da55f56b /pkgs/games/factorio
parentb5a95b181297da1f2bb720cc0f3338d16a8c4355 (diff)
downloadnixpkgs-2b47d24007c649414e59c884fe6d999a2b3990d1.tar
nixpkgs-2b47d24007c649414e59c884fe6d999a2b3990d1.tar.gz
nixpkgs-2b47d24007c649414e59c884fe6d999a2b3990d1.tar.bz2
nixpkgs-2b47d24007c649414e59c884fe6d999a2b3990d1.tar.lz
nixpkgs-2b47d24007c649414e59c884fe6d999a2b3990d1.tar.xz
nixpkgs-2b47d24007c649414e59c884fe6d999a2b3990d1.tar.zst
nixpkgs-2b47d24007c649414e59c884fe6d999a2b3990d1.zip
factorio: 0.12.35 -> 0.13.8
Diffstat (limited to 'pkgs/games/factorio')
-rw-r--r--pkgs/games/factorio/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/games/factorio/default.nix b/pkgs/games/factorio/default.nix
index 1447fed2a82..cb04e9c4750 100644
--- a/pkgs/games/factorio/default.nix
+++ b/pkgs/games/factorio/default.nix
@@ -8,7 +8,7 @@ assert releaseType == "alpha" || releaseType == "headless";
 
 with stdenv.lib;
 let
-  version = "0.12.35";
+  version = "0.13.8";
   isHeadless = releaseType == "headless";
 
   arch = if stdenv.system == "x86_64-linux" then {
@@ -25,12 +25,12 @@ let
     url = "https://www.factorio.com/get-download/${version}/${releaseType}/${arch.inUrl}";
     name = "factorio_${releaseType}_${arch.inTar}-${version}.tar.gz"; # TODO take this from 302 redirection somehow? fetchurl doesn't help.
     x64 = {
-      headless = fetchurl        { inherit name url; sha256 = "1pdfd6qpzdzxsz1pvf1qasw5p6mzidi2q5d5m8x0gqyxaqdg175b"; };
-      alpha = authenticatedFetch { inherit      url; sha256 = "1r2q5hvx8248vfl7jg9jr0sk9kxhh5lg4qlv828j44dmgsxyhn1y"; };
+      headless = fetchurl        { inherit name url; sha256 = "0dliympqnnawfw65n5gnda9mljyqwshmq2hvplf1h8nrp1rw3pgj"; };
+      alpha = authenticatedFetch { inherit      url; sha256 = "12safa8b4g5cpwxbkf8ldkb17lgf33rslr7p81l7gr1lyzfnf82c"; };
     };
     i386 = {
       headless = abort "Factorio 32-bit headless binaries are not available for download.";
-      alpha = authenticatedFetch { inherit      url; sha256 = "1f3hl6m59zvmjrph0kj7fh1axdahgan1v5v3y4rdc6idamvr7rrf"; };
+      alpha = authenticatedFetch { inherit      url; sha256 = "0m4m183avnqxkw28vb7za14dsmcd01sdldgga0br1clilxmgph2w"; };
     };
   };