nixpkgs/pkgs/servers/mbtileserver/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
717 B
Nix
Raw Normal View History

2021-12-28 18:52:31 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2020-09-15 06:41:37 +00:00
buildGoModule rec {
pname = "mbtileserver";
2022-02-18 04:40:07 +00:00
version = "0.8.2";
2020-09-15 06:41:37 +00:00
src = fetchFromGitHub {
owner = "consbio";
repo = pname;
rev = "v${version}";
2022-02-18 04:40:07 +00:00
sha256 = "sha256-aa0YsP+SYYDtaSstTfluEe0/+yDl82KHUSss8LZ2gOc=";
2020-09-15 06:41:37 +00:00
};
2022-02-18 04:40:07 +00:00
vendorSha256 = "sha256-eVnL+28eOgbR0bjWv7XotcHDl5309EO0wV8AGMslvZw=";
2020-09-15 06:41:37 +00:00
meta = with lib; {
description = "A simple Go-based server for map tiles stored in mbtiles format";
homepage = "https://github.com/consbio/mbtileserver";
2021-05-14 18:28:26 +00:00
changelog = "https://github.com/consbio/mbtileserver/blob/v${version}/CHANGELOG.md";
2020-09-15 06:41:37 +00:00
license = licenses.isc;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
};
}