terraria-server: update source URL (#132801)
The old URL redirects to the main page.
This commit is contained in:
parent
40e993b620
commit
da23d345f2
@ -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,17 +14,21 @@ 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;
|
||||||
|
maintainers = with maintainers; [ ncfavier ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user