31 lines
906 B
Nix
31 lines
906 B
Nix
{ stdenv, lib, file, fetchurl, autoPatchelfHook, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "terraria-server";
|
|
version = "1.4.1.2";
|
|
urlVersion = lib.replaceChars [ "." ] [ "" ] version;
|
|
|
|
src = fetchurl {
|
|
url = "https://terraria.org/system/dedicated_servers/archives/000/000/042/original/terraria-server-${urlVersion}.zip";
|
|
sha256 = "18hcy7jfizyyp0h66rga8z948xg3nyk32rzl7hgv7ar1w43airhh";
|
|
};
|
|
|
|
buildInputs = [ file unzip ];
|
|
nativeBuildInputs = [ autoPatchelfHook ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp -r Linux $out/
|
|
chmod +x "$out/Linux/TerrariaServer.bin.x86_64"
|
|
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;
|
|
};
|
|
}
|