summary refs log tree commit diff
path: root/pkgs/games/tome4
diff options
context:
space:
mode:
authorRicardo Ardissone <ricardo.ardissone@gmail.com>2017-03-04 12:24:46 -0300
committerJörg Thalheim <joerg@thalheim.io>2017-03-06 19:43:25 +0100
commit8cbba14dbe34dd2d7f838e4322976c8350f02b6f (patch)
tree829ea71b41ffc8435225e46d2dfd6de3a274a891 /pkgs/games/tome4
parent07bf113bbe79640ad044177751b2da9dc94b70c2 (diff)
downloadnixpkgs-8cbba14dbe34dd2d7f838e4322976c8350f02b6f.tar
nixpkgs-8cbba14dbe34dd2d7f838e4322976c8350f02b6f.tar.gz
nixpkgs-8cbba14dbe34dd2d7f838e4322976c8350f02b6f.tar.bz2
nixpkgs-8cbba14dbe34dd2d7f838e4322976c8350f02b6f.tar.lz
nixpkgs-8cbba14dbe34dd2d7f838e4322976c8350f02b6f.tar.xz
nixpkgs-8cbba14dbe34dd2d7f838e4322976c8350f02b6f.tar.zst
nixpkgs-8cbba14dbe34dd2d7f838e4322976c8350f02b6f.zip
tome4: 1.4.6 -> 1.4.9
Diffstat (limited to 'pkgs/games/tome4')
-rw-r--r--pkgs/games/tome4/default.nix33
1 files changed, 22 insertions, 11 deletions
diff --git a/pkgs/games/tome4/default.nix b/pkgs/games/tome4/default.nix
index b0fd8072566..f13190abdf7 100644
--- a/pkgs/games/tome4/default.nix
+++ b/pkgs/games/tome4/default.nix
@@ -1,32 +1,43 @@
 {stdenv, fetchurl, openal, libpng, libvorbis, mesa_glu, premake4, SDL2, SDL2_image, SDL2_ttf }:
 
 stdenv.mkDerivation rec {
-  version = "1.4.6";
+  version = "1.4.9";
   name = "tome4-${version}";
   src = fetchurl {
     url = "http://te4.org/dl/t-engine/t-engine4-src-${version}.tar.bz2";
-    sha256 = "12pi2lw1k6l3p209nnkh4nfv3ppp8kpd6mkh1324c81z6mh6w4wg";
+    sha256 = "0c82m0g1ps64zghgdrp78m6bvfngcb75whhknqiailld7kz1g9xl";
   };
-  buildInputs = [ mesa_glu openal libpng libvorbis SDL2 SDL2_ttf SDL2_image premake4 ];
-  NIX_CFLAGS_COMPILE = [ "-I${SDL2_image}/include/SDL2" "-I${SDL2_ttf}/include/SDL2" ];
+  nativeBuildInputs = [ premake4 ];
+  buildInputs = [
+    mesa_glu openal libpng libvorbis SDL2 SDL2_ttf SDL2_image
+  ];
+  NIX_CFLAGS_COMPILE = [
+    "-I${SDL2_image}/include/SDL2"
+    "-I${SDL2_ttf}/include/SDL2"
+  ];
   preConfigure = ''
-    sed -e "s@/opt/SDL-2.0/include/SDL2@${SDL2}/include/SDL2@g" -e "s@/usr/include/GL@/run/opengl-driver/include@g" -i premake4.lua
+    substituteInPlace premake4.lua \
+      --replace "/opt/SDL-2.0/include/SDL2" "${SDL2.dev}/include/SDL2" \
+      --replace "/usr/include/GL" "/run/opengl-driver/include"
     premake4 gmake
   '';
   makeFlags = [ "config=release" ];
   installPhase = ''
     install -Dm755 t-engine $out/opt/tome4/t-engine
-    echo "cd $out/opt/tome4" >> tome4
-    echo "./t-engine &" >> tome4
+    cat > tome4 <<EOF
+#!/bin/sh
+cd $out/opt/tome4
+./t-engine &
+EOF
     install -Dm755 tome4 $out/bin/tome4
     cp -r bootstrap $out/opt/tome4
     cp -r game $out/opt/tome4
   '';
-  meta = {
+  meta = with stdenv.lib; {
     homepage = "http://te4.org/";
     description = "Tales of Maj'eyal (rogue-like game)";
-    maintainers = [ stdenv.lib.maintainers.chattered  ];
-    license = stdenv.lib.licenses.gpl3;
-    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ maintainers.chattered ];
+    license = licenses.gpl3;
+    platforms = platforms.linux;
   };
 }