From 66164cd33e66dfd66d62ddd019b8fa20be32685e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 17 Feb 2025 14:39:30 +0000 Subject: [PATCH] pmtiles: 1.25.0 -> 1.25.1 --- pkgs/by-name/pm/pmtiles/package.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/pm/pmtiles/package.nix b/pkgs/by-name/pm/pmtiles/package.nix index 736907fa3bfc..9642c4deacf8 100644 --- a/pkgs/by-name/pm/pmtiles/package.nix +++ b/pkgs/by-name/pm/pmtiles/package.nix @@ -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"; }; }