nixpkgs/pkgs/games/terraria-server/default.nix

31 lines
906 B
Nix
Raw Normal View History

{ stdenv, lib, file, fetchurl, autoPatchelfHook, unzip }:
stdenv.mkDerivation rec {
pname = "terraria-server";
2020-10-31 20:17:16 +00:00
version = "1.4.1.2";
urlVersion = lib.replaceChars [ "." ] [ "" ] version;
src = fetchurl {
2020-10-31 20:17:16 +00:00
url = "https://terraria.org/system/dedicated_servers/archives/000/000/042/original/terraria-server-${urlVersion}.zip";
sha256 = "18hcy7jfizyyp0h66rga8z948xg3nyk32rzl7hgv7ar1w43airhh";
};
2016-06-03 20:40:25 +00:00
buildInputs = [ file unzip ];
nativeBuildInputs = [ autoPatchelfHook ];
installPhase = ''
mkdir -p $out/bin
2016-06-03 20:40:25 +00:00
cp -r Linux $out/
2016-08-07 01:58:38 +00:00
chmod +x "$out/Linux/TerrariaServer.bin.x86_64"
2016-06-03 20:40:25 +00:00
ln -s "$out/Linux/TerrariaServer.bin.x86_64" $out/bin/TerrariaServer
'';
meta = with lib; {
homepage = "https://terraria.org";
description =
"Dedicated server for Terraria, a 2D action-adventure sandbox";
platforms = [ "x86_64-linux" ];
license = licenses.unfree;
};
}