Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
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 ];
|
|
};
|
|
}
|