nixpkgs/pkgs/by-name/ti/tile38/package.nix

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

31 lines
918 B
Nix
Raw Normal View History

2022-01-20 16:40:48 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "tile38";
2024-06-04 18:13:24 +01:00
version = "1.33.0";
2022-01-20 16:40:48 +00:00
src = fetchFromGitHub {
owner = "tidwall";
repo = pname;
rev = version;
2024-06-04 18:13:24 +01:00
sha256 = "sha256-07Yp64JaIyKD4WrwUKOIupin8tdN2iL72Yf6l5PSIg0=";
2022-01-20 16:40:48 +00:00
};
2024-06-04 18:13:24 +01:00
vendorHash = "sha256-nnamNwowRPWQBKUMg800bFgijv8iHbdh/wUwTfX0NcY=";
2022-01-20 16:40:48 +00:00
subPackages = [ "cmd/tile38-cli" "cmd/tile38-server" ];
ldflags = [ "-s" "-w" "-X github.com/tidwall/tile38/core.Version=${version}" ];
meta = with lib; {
description = "Real-time Geospatial and Geofencing";
longDescription = ''
Tile38 is an in-memory geolocation data store, spatial index, and realtime geofence.
It supports a variety of object types including lat/lon points, bounding boxes, XYZ tiles, Geohashes, and GeoJSON.
'';
homepage = "https://tile38.com/";
license = licenses.mit;
maintainers = teams.geospatial.members;
2022-01-20 16:40:48 +00:00
};
}