nixpkgs/pkgs/servers/geospatial/tegola/default.nix

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

27 lines
630 B
Nix
Raw Normal View History

2022-05-21 07:55:25 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2022-05-21 07:55:25 +00:00
buildGoModule rec {
pname = "tegola";
2023-08-28 02:07:05 +00:00
version = "0.18.0";
src = fetchFromGitHub {
owner = "go-spatial";
2022-12-01 19:50:37 +00:00
repo = "tegola";
2020-06-06 08:29:08 +00:00
rev = "v${version}";
2023-08-28 02:07:05 +00:00
sha256 = "sha256-lrFRPD16AFavc+ghpKoxwQJsfJLe5jxTQVK/0a6SIIs=";
};
2023-08-06 15:37:17 +00:00
vendorHash = null;
2022-05-21 07:55:25 +00:00
subPackages = [ "cmd/tegola" ];
2020-08-27 00:13:41 +00:00
2022-05-21 07:55:25 +00:00
ldflags = [ "-s" "-w" "-X github.com/go-spatial/tegola/internal/build.Version=${version}" ];
2020-09-27 04:20:00 +00:00
meta = with lib; {
homepage = "https://www.tegola.io/";
description = "Mapbox Vector Tile server";
maintainers = with maintainers; [ ingenieroariel ];
license = licenses.mit;
};
}