pmtiles: 1.25.0 -> 1.25.1

This commit is contained in:
R. Ryantm 2025-02-17 14:39:30 +00:00 committed by Nikolay Korotkiy
parent eaee7b7a45
commit 66164cd33e
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5

View File

@ -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";
};
}