[Backport release-21.05] terraria-server: update source URL (#132855)
* terraria-server: update source URL The old URL redirects to the main page. (cherry picked from commit 1e919bfeedae2abefb520a4fad7e9e37e98be8e0) * Apply suggestions from code review Co-authored-by: Naïm Favier <n@monade.li> Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
This commit is contained in:
parent
b5510dc4d4
commit
5ed554543c
@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
|
|||||||
urlVersion = lib.replaceChars [ "." ] [ "" ] version;
|
urlVersion = lib.replaceChars [ "." ] [ "" ] version;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://terraria.org/system/dedicated_servers/archives/000/000/046/original/terraria-server-${urlVersion}.zip";
|
url = "https://terraria.org/api/download/pc-dedicated-server/terraria-server-${urlVersion}.zip";
|
||||||
sha256 = "0qm4pbm1d9gax47fk4zhw9rcxvajxs36w7dghirli89i994r7g8j";
|
sha256 = "0qm4pbm1d9gax47fk4zhw9rcxvajxs36w7dghirli89i994r7g8j";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -14,16 +14,19 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ autoPatchelfHook unzip ];
|
nativeBuildInputs = [ autoPatchelfHook unzip ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp -r Linux $out/
|
cp -r Linux $out/
|
||||||
chmod +x "$out/Linux/TerrariaServer.bin.x86_64"
|
chmod +x "$out/Linux/TerrariaServer.bin.x86_64"
|
||||||
ln -s "$out/Linux/TerrariaServer.bin.x86_64" $out/bin/TerrariaServer
|
ln -s "$out/Linux/TerrariaServer.bin.x86_64" $out/bin/TerrariaServer
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://terraria.org";
|
homepage = "https://terraria.org";
|
||||||
description =
|
description = "Dedicated server for Terraria, a 2D action-adventure sandbox";
|
||||||
"Dedicated server for Terraria, a 2D action-adventure sandbox";
|
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" ];
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user