diff --git a/pkgs/games/terraria-server/default.nix b/pkgs/games/terraria-server/default.nix new file mode 100644 index 00000000000..4eeefc2801b --- /dev/null +++ b/pkgs/games/terraria-server/default.nix @@ -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; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f71857ca653..d41ee1149b8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14315,6 +14315,8 @@ let tennix = callPackage ../games/tennix { }; + terraria-server = callPackage ../games/terraria-server/default.nix { }; + tibia = callPackage_i686 ../games/tibia { }; tintin = callPackage ../games/tintin { };