Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
762 B
Nix
32 lines
762 B
Nix
{
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "minetest-mapserver";
|
|
version = "4.9.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "minetest-mapserver";
|
|
repo = "mapserver";
|
|
rev = "v${version}";
|
|
hash = "sha256-YKJbqD0dtQGLXDRLOwLl6E5R36gftDD98+/XpTGwZSk=";
|
|
};
|
|
|
|
vendorHash = "sha256-sPqwY3c/ehrrP6aeUyRUMqCpHqBErwIXUlgoX0P99/w=";
|
|
|
|
meta = {
|
|
description = "Realtime mapserver for minetest";
|
|
mainProgram = "mapserver";
|
|
homepage = "https://github.com/minetest-mapserver/mapserver/blob/master/readme.md";
|
|
changelog = "https://github.com/minetest-mapserver/mapserver/releases/tag/v${version}";
|
|
license = with lib.licenses; [
|
|
mit
|
|
cc-by-sa-30
|
|
];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|