about summary refs log tree commit diff
path: root/pkgs/games/humblebundle/starbound.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/humblebundle/starbound.nix')
-rw-r--r--pkgs/games/humblebundle/starbound.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/games/humblebundle/starbound.nix b/pkgs/games/humblebundle/starbound.nix
index 0b6ce1c2..38130d58 100644
--- a/pkgs/games/humblebundle/starbound.nix
+++ b/pkgs/games/humblebundle/starbound.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchHumbleBundle, unzip, fetchurl, writeText, SDL2, mesa
+{ stdenv, fetchHumbleBundle, unrar, fetchurl, writeText, SDL2, mesa
 , makeDesktopItem
 }:
 
@@ -268,17 +268,17 @@ let
 
 in stdenv.mkDerivation rec {
   name = "starbound-${version}";
-  version = "1.0.5";
+  version = "1.1.0";
 
   src = fetchHumbleBundle {
-    name = "starbound-linux-${version}.zip";
+    name = "starbound-linux-${version}.rar";
     machineName = "starbound_linux";
-    md5 = "0416fa1ddd6a420644fcf3ec18feb90c";
+    md5 = "ed4caf272ce34ce1f59480dcd26886ae";
   };
 
   outputs = [ "out" "lib" "assets" ];
 
-  nativeBuildInputs = [ unzip ];
+  nativeBuildInputs = [ unrar ];
 
   buildPhase = with stdenv.lib; ''
     cc -Werror -shared "${preloaderSource}" -o preload.so -ldl -fPIC \