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-06-09 04:30:09 +00:00
version = "1.4.0.5";
urlVersion = lib.replaceChars [ "." ] [ "" ] version;
src = fetchurl {
2020-06-09 04:30:09 +00:00
url = "https://terraria.org/system/dedicated_servers/archives/000/000/039/original/terraria-server-${urlVersion}.zip";
sha256 = "1bvcafpjxp7ddrbhm3z0xamgi71ymbi41dlx990daz0b5kbdir8y";
};
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;
};
}