about summary refs log tree commit diff
path: root/pkgs/games/humblebundle/starbound.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-09-11 16:36:23 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-09-11 16:36:23 +0200
commit8aa351305d04ea7054b54abc557f754bec057522 (patch)
treea24fd8e01cb6dc5a86db34d8bef258aff46cab6a /pkgs/games/humblebundle/starbound.nix
parent1513c8d35757423db6dbd66c47243ed5db5bd3b8 (diff)
pkgs/starbound: Update to version 1.1.0
The upstream archive is now a RAR archive, so we need to use unrar
instead of unzip.

Major upstream changes:

  * Fishing
    * Two tiers of fishing rods are now craftable from the Foraging
      Table and can be used to fish on ocean planets (including arctic,
      toxic and magma oceans)
    * Added 48 unique fish types to catch
    * Rare fish can give valuable rewards, including reel and lure
      upgrades to enhance your fishing rod
  * Collections
    * New Collections interface tracks various kinds of collectables
      including captured pets, figurines, fish, cooking recipes,
      fossils, and bugs
  * Added the Relocator tool, which allows non-hostile creatures such as
    critters, fish, bugs, and farm animals to be moved
  * Added friendly Novakid villages including a variety of new
    Novakid-themed furniture and objects

The full list of upstream changes can be found at:

http://playstarbound.com/starbound-1-1-changelog/

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
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 \