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

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

28 lines
661 B
Nix
Raw Normal View History

2022-05-21 09:55:25 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
2022-05-21 09:55:25 +02:00
buildGoModule rec {
pname = "tegola";
2022-05-21 09:55:25 +02:00
version = "0.15.0";
src = fetchFromGitHub {
owner = "go-spatial";
2020-06-06 10:29:08 +02:00
repo = pname;
rev = "v${version}";
2022-05-21 09:55:25 +02:00
sha256 = "sha256-RSuTZHv3W2SVPAkydz5yB89Ioynp0DO0qaQKut5tokc=";
};
2022-05-21 09:55:25 +02:00
vendorSha256 = null;
subPackages = [ "cmd/tegola" ];
2020-08-27 02:13:41 +02:00
2022-05-21 09:55:25 +02:00
ldflags = [ "-s" "-w" "-X github.com/go-spatial/tegola/internal/build.Version=${version}" ];
2020-09-27 06:20:00 +02:00
meta = with lib; {
homepage = "https://www.tegola.io/";
description = "Mapbox Vector Tile server";
maintainers = with maintainers; [ ingenieroariel ];
platforms = platforms.unix;
license = licenses.mit;
};
}