From fbb8f62cfff54918fb36166df4eb48ba88a50500 Mon Sep 17 00:00:00 2001 From: pancho horrillo Date: Sat, 27 Jul 2024 16:57:23 +0200 Subject: [PATCH] celestia: fix meta.homepage.url MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As can be read on the current Celestia project site’s [news](https://celestiaproject.space/news.html), on Jun. 28, 2023 their new domain was moved to https://celestiaproject.space, because (and I quote): “Cybersquatters were faster and we’re not eager to give them $$$.” Their [old domain](https://celestia.space) seems indeed like a parked domain (as of 2024-07-27T17:00). --- pkgs/applications/science/astronomy/celestia/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/science/astronomy/celestia/default.nix b/pkgs/applications/science/astronomy/celestia/default.nix index 3347fa5356b5..2d227389d429 100644 --- a/pkgs/applications/science/astronomy/celestia/default.nix +++ b/pkgs/applications/science/astronomy/celestia/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; meta = with lib; { - homepage = "https://celestia.space/"; + homepage = "https://celestiaproject.space/"; description = "Real-time 3D simulation of space"; mainProgram = "celestia"; changelog = "https://github.com/CelestiaProject/Celestia/releases/tag/${version}";