about summary refs log tree commit diff
path: root/humblebundle/bastion.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-02-08 22:06:10 +0100
committeraszlig <aszlig@redmoonstudios.org>2016-02-08 22:06:10 +0100
commit5570ec94ffe086f1ff47ad99606d39eb7b815dd1 (patch)
tree71cb764b02d41b1438642b226a3e2840e01caaa6 /humblebundle/bastion.nix
parentdbac077ce8ec5a1cc2ddbc8faf335966255a9504 (diff)
parenteba220a4dcce16d02921b27419f039743f1c088f (diff)
Merge pull request aszlig/nixgames#1 from @layus
This adds Unepic to the humblebundle games list and also fixes Bastion,
or at least it *should* fix Bastion.

I have tested Unepic, though I had to fix the download, which I'm going
to commit later.

As for Bastion, at least with the humblebundle fetcher it's not able to
fetch "bastion_linux" (it doesn't even show up), however on my Humble
library I can see the download (maybe it's because I bought this along
with HIB 5).

Nevertheless, it's at least a small step forward and we need to fix
these issues later.
Diffstat (limited to 'humblebundle/bastion.nix')
-rw-r--r--humblebundle/bastion.nix59
1 files changed, 48 insertions, 11 deletions
diff --git a/humblebundle/bastion.nix b/humblebundle/bastion.nix
index 652b8011..b4acda6b 100644
--- a/humblebundle/bastion.nix
+++ b/humblebundle/bastion.nix
@@ -1,25 +1,62 @@
-{ stdenv, fetchHumbleBundle, lzma, mono }:
+{ stdenv, fetchHumbleBundle, lzma, xorg, libpulseaudio}:
 
 let
-  arch = if stdenv.system == "i686-linux" then "x86"
-         else if stdenv.system == "x86_64-linux" then "x86_64"
-         else throw "Unsupported architecture ${stdenv.system}!";
+  arch = {
+    "i686-linux" = "x86";
+    "x86_64-linux" = "x86_64";
+  }.${stdenv.system};
 in stdenv.mkDerivation rec {
   name = "bastion-1.4";
 
   src = fetchHumbleBundle {
     name = "Bastion-HIB-2012-06-20.sh";
+    machineName = "bastion_linux";
+    downloadName = ".sh";
     md5 = "aa6ccaead3b4b8a5fbd156f4019e8c8b";
   };
 
-  unpackCmd = ''
-    mkdir "${name}"
+  dontStrip = true;
+  phases = ["installPhase"];
 
-    sh "$src" --tar xf ./instarchive_all -O | ${lzma}/bin/lzcat \
-      | tar x -C "${name}" Bastion.exe
-  '';
+  installPhase = let
+    rpath = stdenv.lib.makeLibraryPath [
+      "$dest"
+      xorg.libX11
+      xorg.libXi
+      stdenv.cc.cc
+      libpulseaudio
+    ];
+   in ''
+    dest="$out/opt/games/bastion"
+    libdir="$dest/lib" #${stdenv.lib.optionalString (arch=="x86_64") "64"}"
+
+    # Unpack binaries and data into $dest
+    mkdir -p "$dest"
+    sh "$src" --tar xf ./instarchive_all -O           | ${lzma}/bin/lzcat | tar x -C "$dest"
+    sh "$src" --tar xf ./instarchive_linux_${arch} -O | ${lzma}/bin/lzcat | tar x -C "$dest"
+
+    # Ensure that $dest is a valid library path.
+    mv $dest/lib64 $libdir || true
+
+    # Patch heavily :-)
+    patchelf \
+      --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
+      --set-rpath "${rpath}" "$dest/Bastion.bin.${arch}"
+    patchelf --set-rpath "${rpath}" "$libdir/libmono-2.0.so.1"
+    patchelf --set-rpath "${rpath}" "$libdir/libfmodex.so"
+    patchelf --set-rpath "${rpath}" "$libdir/libSDL-1.2.so.0"
+
+    # Fixup permissions, just to be sure.
+    find "$dest" -type f -exec chmod 644 "{}" +
+    chmod 755 "$dest/Bastion.bin.${arch}"
+
+    # Taken from ArchLinux; might be useful to actually implement
+    #install -Dm644 "''${pkgname}".desktop "''${pkgdir}"/usr/share/applications/"''${pkgname}".desktop
+    #install -Dm755 "mesa''${pkgname}" "''${pkgdir}"/usr/bin/"''${pkgname}"mesa
+    #install -Dm644 "''${pkgdir}"/opt/games/Bastion/Bastion.png "''${pkgdir}"/usr/share/icons/"''${pkgname}".png
 
-  installPhase = ''
-    install -vD "Bastion.bin.${arch}" "$out/bin/bastion"
+    # XXX: Make wrapper instead of symlink ? See ArchLinux's bastionmesa above.
+    mkdir -p "$out/bin"
+    ln -s "$dest/Bastion.bin.${arch}" "$out/bin/bastion"
   '';
 }