mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
Merge pull request #8326 from Chattered/master
Add Tales of Maj'eyal game.
This commit is contained in:
commit
b32a78a97a
29
pkgs/games/tome4/default.nix
Normal file
29
pkgs/games/tome4/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{stdenv, fetchurl, openal, libvorbis, mesa_glu, premake4, SDL2, SDL2_image, SDL2_ttf}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "1.3.1";
|
||||||
|
name = "tome4-${version}";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://te4.org/dl/t-engine/t-engine4-src-1.3.1.tar.bz2";
|
||||||
|
sha256 = "9b6658e29ad3be9f8469a61e724350f4dfec676777e471f633d616443dfbc7e7";
|
||||||
|
};
|
||||||
|
buildInputs = [ mesa_glu openal libvorbis SDL2 SDL2_ttf SDL2_image premake4 ];
|
||||||
|
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
|
||||||
|
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
|
||||||
|
install -Dm755 tome4 $out/bin/tome4
|
||||||
|
cp -r bootstrap $out/opt/tome4
|
||||||
|
cp -r game $out/opt/tome4
|
||||||
|
'';
|
||||||
|
meta = {
|
||||||
|
homepage = "http://te4.org/";
|
||||||
|
description = "Tales of Maj'eyal (rogue-like game)";
|
||||||
|
license = stdenv.lib.licenses.gpl3;
|
||||||
|
};
|
||||||
|
}
|
|
@ -13479,6 +13479,8 @@ let
|
||||||
|
|
||||||
tintin = callPackage ../games/tintin { };
|
tintin = callPackage ../games/tintin { };
|
||||||
|
|
||||||
|
tome4 = callPackage ../games/tome4 { };
|
||||||
|
|
||||||
tpm = callPackage ../games/thePenguinMachine { };
|
tpm = callPackage ../games/thePenguinMachine { };
|
||||||
|
|
||||||
tremulous = callPackage ../games/tremulous { };
|
tremulous = callPackage ../games/tremulous { };
|
||||||
|
|
Loading…
Reference in a new issue