terraria-server: add dedicated server version 1308 for Linux x86_64

fix

fix

limit to 64bit linux
This commit is contained in:
System administrator 2015-12-15 10:19:29 +01:00
parent 93d8671e2c
commit 6d3a89f6da
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ stdenv, lib, file, fetchurl }:
assert stdenv.system == "x86_64-linux";
stdenv.mkDerivation rec {
name = "terraria-server-${version}";
version = "1308";
src = fetchurl {
url = http://terraria.org/server/terraria-server-linux-1308.tar.gz;
sha256 = "0cx3nx7wmzcw9l0nz9zm4amccl8nrd09hlb3jc1yrqcaswbyxc8a";
};
buildInputs = [ file ];
sourceRoot = ".";
installPhase = ''
mkdir -p $out/bin
cp -r * $out/
ln -s $out/terraria-server-linux-${version}/TerrariaServer.bin.x86_64 $out/bin/TerrariaServer
# Fix "/lib64/ld-linux-x86-64.so.2" like references in ELF executables.
echo "running patchelf on prebuilt binaries:"
find "$out" | while read filepath; do
if file "$filepath" | grep -q "ELF.*executable"; then
echo "setting interpreter $(cat "$NIX_CC"/nix-support/dynamic-linker) in $filepath"
patchelf --set-interpreter "$(cat "$NIX_CC"/nix-support/dynamic-linker)" "$filepath"
test $? -eq 0 || { echo "patchelf failed to process $filepath"; exit 1; }
fi
done
'';
meta = with lib; {
homepage = http://terraria.org;
description = "Dedicated server for the main game";
platforms = platforms.linux;
license = licenses.unfree;
};
}

View file

@ -14266,6 +14266,8 @@ let
tennix = callPackage ../games/tennix { };
terraria-server = callPackage ../games/terraria-server/default.nix { };
tibia = callPackage_i686 ../games/tibia { };
tintin = callPackage ../games/tintin { };