From 8aa351305d04ea7054b54abc557f754bec057522 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 11 Sep 2016 16:36:23 +0200 Subject: 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 --- pkgs/games/humblebundle/starbound.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'pkgs/games') 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 \ -- cgit 1.4.1