Unverified Commit c1100d4f authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #284688 from r-ryantm/auto-update/pmtiles

pmtiles: 1.13.0 -> 1.14.0
parents dd8de437 49e9e6ed
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
  pname = "pmtiles";
  version = "1.13.0";
  version = "1.14.0";

  src = fetchFromGitHub {
    owner = "protomaps";
    repo = "go-pmtiles";
    rev = "v${version}";
    hash = "sha256-Zxf8o0+Vc4l8XV9vYGEWxXSr+KyzTqZNxbgaZtkJ+JQ=";
    hash = "sha256-yIH5vJTrSH1y30nHU7jrem1kbXp1fO0mhLoGMrv4IAE=";
  };

  vendorHash = "sha256-Y32vDgF7BNjSyGtwgsJdoRy2gGDfhTKtYpSjTjp5dnI=";
  vendorHash = "sha256-tSQjCdgEXIGlSWcIB6lLQulAiEAebgW3pXL9Z2ujgIs=";

  ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=v${version}" ];