Unverified Commit 24ec199c authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by GitHub
Browse files

pmtiles: 1.25.0 -> 1.25.1 (#382844)

parents ea1296a9 66164cd3
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -5,13 +5,13 @@
}:
buildGoModule rec {
  pname = "pmtiles";
  version = "1.25.0";
  version = "1.25.1";

  src = fetchFromGitHub {
    owner = "protomaps";
    repo = "go-pmtiles";
    rev = "v${version}";
    hash = "sha256-eOcjJPQ5a9d1iDaTa+oZgMmyaOszd2ORaKKr3Td4WP0=";
    tag = "v${version}";
    hash = "sha256-sX+rEXCmDqHP6GZ5QdvJLBaJsuAhvRQSm+htlQiyYDk=";
  };

  vendorHash = "sha256-NQ74rLYhzacOrw6Tl6WoERfqbx2aF9X18rh0oOjCotE=";
@@ -27,11 +27,11 @@ buildGoModule rec {
    mv $out/bin/go-pmtiles $out/bin/pmtiles
  '';

  meta = with lib; {
  meta = {
    description = "Single-file utility for creating and working with PMTiles archives";
    homepage = "https://github.com/protomaps/go-pmtiles";
    license = licenses.bsd3;
    maintainers = teams.geospatial.members ++ (with maintainers; [ theaninova ]);
    license = lib.licenses.bsd3;
    maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ theaninova ]);
    mainProgram = "pmtiles";
  };
}