nixpkgs/pkgs/games/tibia/default.nix

58 lines
1.7 KiB
Nix
Raw Normal View History

2014-09-22 22:16:37 +00:00
{ stdenv, fetchurl, patchelf, glibc, libX11, mesa }:
2014-04-25 18:35:18 +00:00
with stdenv.lib;
assert stdenv.isi686;
stdenv.mkDerivation {
2014-11-01 01:49:00 +00:00
name = "tibia-10.61";
2014-04-25 18:35:18 +00:00
src = fetchurl {
2014-11-01 01:49:00 +00:00
url = http://static.tibia.com/download/tibia1061.tgz;
sha256 = "0dyhzhklarx9zj281d5pjxvfd1r740wdg79b07dj8ll8zwvxfqcz";
2014-04-25 18:35:18 +00:00
};
shell = stdenv.shell;
# These binaries come stripped already and trying to strip after the
# files are in $out/res and after patchelf just breaks them.
# Strangely it works if the files are in $out but then nix doesn't
# put them in our PATH. We set all the files to $out/res because
# we'll be using a wrapper to start the program which will go into
# $out/bin.
dontStrip = true;
installPhase = ''
mkdir -pv $out/res
2014-09-22 22:16:37 +00:00
cp -r * $out/res
2014-04-25 18:35:18 +00:00
patchelf --set-interpreter ${glibc}/lib/ld-linux.so.2 \
--set-rpath ${stdenv.gcc.gcc}/lib:${libX11}/lib:${mesa}/lib \
2014-04-28 19:31:46 +00:00
"$out/res/Tibia"
2014-04-25 18:35:18 +00:00
# We've patchelf'd the files. The main Tibia binary is a bit
# dumb so it looks for ./Tibia.dat. This requires us to be in
# the same directory as the file itself but that's very tedious,
# especially with nix which changes store hashes. Here we generate
# a simple wrapper that we put in $out/bin which will do the
# directory changing for us.
mkdir -pv $out/bin
# The wrapper script itself. We use $LD_LIBRARY_PATH for libGL.
cat << EOF > "$out/bin/Tibia"
#!${stdenv.shell}
cd $out/res
${glibc}/lib/ld-linux.so.2 --library-path \$LD_LIBRARY_PATH ./Tibia "\$@"
EOF
chmod +x $out/bin/Tibia
'';
meta = {
2014-04-28 19:31:46 +00:00
description = "Top-down MMORPG set in a fantasy world";
2014-04-25 18:35:18 +00:00
homepage = "http://tibia.com";
license = stdenv.lib.licenses.unfree;
2014-04-25 18:35:18 +00:00
platforms = ["i686-linux"];
};
}