159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
28 lines
789 B
Nix
28 lines
789 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "minetest-mapserver";
|
|
version = "4.9.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "minetest-mapserver";
|
|
repo = "mapserver";
|
|
rev = "v${version}";
|
|
hash = "sha256-3bL23hwJgYMPV2nSSfq9plttcx7UYvhUa6OCbKfBACY=";
|
|
};
|
|
|
|
vendorHash = "sha256-P3+M1ciRmFbOFnjy1+oWPhngPYFe/5o6Cs8pRlYNx2Q=";
|
|
|
|
meta = with lib; {
|
|
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 licenses; [ mit cc-by-sa-30 ];
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ gm6k ];
|
|
};
|
|
}
|