tippecanoe: 2.75.0 -> 2.75.1

This commit is contained in:
R. Ryantm 2025-02-14 14:37:41 +00:00 committed by Nikolay Korotkiy
parent 62172c1d3a
commit 0102b4d6ca
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5

View File

@ -10,13 +10,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "tippecanoe";
version = "2.75.0";
version = "2.75.1";
src = fetchFromGitHub {
owner = "felt";
repo = "tippecanoe";
rev = finalAttrs.version;
hash = "sha256-0ayEGmIUw5jI5utp689oxlFR15TeQ1gbLJIos4AXdd4=";
tag = finalAttrs.version;
hash = "sha256-rBuk34lOrp9aW7yK0LOTRqFJg3J8IogR01kcFhgK12Y=";
};
buildInputs = [
@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: {
version = "v${finalAttrs.version}";
};
meta = with lib; {
meta = {
description = "Build vector tilesets from large collections of GeoJSON features";
homepage = "https://github.com/felt/tippecanoe";
license = licenses.bsd2;
maintainers = teams.geospatial.members;
platforms = platforms.unix;
license = lib.licenses.bsd2;
maintainers = lib.teams.geospatial.members;
platforms = lib.platforms.unix;
mainProgram = "tippecanoe";
};
})