mbtileserver: init at 0.6.1

gstqt5
Nikolay Korotkiy 2020-09-15 09:41:37 +03:00
parent 7f52b1f339
commit 02a7dde905
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "mbtileserver";
version = "0.6.1";
src = fetchFromGitHub {
owner = "consbio";
repo = pname;
rev = "v${version}";
sha256 = "0b0982rn5jsv8zxfkrcmhys764nim6136hafc8ccj0mwdyvwafxd";
};
vendorSha256 = null;
meta = with lib; {
description = "A simple Go-based server for map tiles stored in mbtiles format";
homepage = "https://github.com/consbio/mbtileserver";
license = licenses.isc;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
};
}

View File

@ -16466,6 +16466,8 @@ in
mattermost-desktop = callPackage ../applications/networking/instant-messengers/mattermost-desktop { };
mbtileserver = callPackage ../servers/mbtileserver { };
mediatomb = callPackage ../servers/mediatomb { };
memcached = callPackage ../servers/memcached {};