52038c0d01
would not build without libgcc, complaining with > error: auto-patchelf could not satisfy dependency libgcc_s.so.1 wanted by /nix/store/khj3cwb417ldhfn28zx28665x1ljh5x1-terraria-server-1.4.4.9/Linux/TerrariaServer.bin.x86_64
34 lines
998 B
Nix
34 lines
998 B
Nix
{ stdenv, lib, file, fetchurl, autoPatchelfHook, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "terraria-server";
|
|
version = "1.4.4.9";
|
|
urlVersion = lib.replaceStrings [ "." ] [ "" ] version;
|
|
|
|
src = fetchurl {
|
|
url = "https://terraria.org/api/download/pc-dedicated-server/terraria-server-${urlVersion}.zip";
|
|
sha256 = "sha256-Mk+5s9OlkyTLXZYVT0+8Qcjy2Sb5uy2hcC8CML0biNY=";
|
|
};
|
|
|
|
buildInputs = [ file stdenv.cc.cc.libgcc ];
|
|
nativeBuildInputs = [ autoPatchelfHook unzip ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
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
|
|
|
|
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;
|
|
maintainers = with maintainers; [ ncfavier ];
|
|
};
|
|
}
|