Unverified Commit 654c1bbd authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by GitHub
Browse files

tippecanoe: 2.75.0 -> 2.75.1 (#382073)

parents cc63506c 0102b4d6
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -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";
  };
})