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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.0 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, autoPatchelfHook
, unzip
, zlib
}:
stdenv.mkDerivation rec {
pname = "terraria-server";
2022-11-18 20:27:28 +00:00
version = "1.4.4.9";
urlVersion = lib.replaceStrings [ "." ] [ "" ] version;
src = fetchurl {
url = "https://terraria.org/api/download/pc-dedicated-server/terraria-server-${urlVersion}.zip";
2022-11-18 20:27:28 +00:00
sha256 = "sha256-Mk+5s9OlkyTLXZYVT0+8Qcjy2Sb5uy2hcC8CML0biNY=";
};
nativeBuildInputs = [ autoPatchelfHook unzip ];
buildInputs = [ stdenv.cc.cc.libgcc zlib ];
installPhase = ''
runHook preInstall
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
runHook postInstall
'';
meta = with lib; {
homepage = "https://terraria.org";
description = "Dedicated server for Terraria, a 2D action-adventure sandbox";
platforms = [ "x86_64-linux" ];
license = licenses.unfree;
mainProgram = "TerrariaServer";
maintainers = with maintainers; [ ncfavier tomasajt ];
};
}