Merge pull request #152499 from sikmir/mbtileserver
mbtileserver: 0.8.0 → 0.8.1
This commit is contained in:
commit
bacc31ff57
1 changed files with 3 additions and 9 deletions
|
@ -1,22 +1,16 @@
|
||||||
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "mbtileserver";
|
pname = "mbtileserver";
|
||||||
version = "0.8.0";
|
version = "0.8.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "consbio";
|
owner = "consbio";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-0wSc2DIfK6o3kSiH2sSQcYRR5dHnQbnJC6SX6DwVk1c=";
|
sha256 = "sha256-C6Gz+RBUrjnfJWo4Ou+s/JYJ8iVP9FMYJ/cxJjcVsXk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# https://github.com/consbio/mbtileserver/issues/130
|
|
||||||
postPatch = lib.optionalString stdenv.isAarch64 ''
|
|
||||||
substituteInPlace handlers/tile_test.go \
|
|
||||||
--replace "Test_CalcScaleResolution" "Skip_CalcScaleResolution"
|
|
||||||
'';
|
|
||||||
|
|
||||||
vendorSha256 = "sha256-36tUTZud0hxH9oZlnKxeK/xzoEzfw3xFMnd/r0srw6U=";
|
vendorSha256 = "sha256-36tUTZud0hxH9oZlnKxeK/xzoEzfw3xFMnd/r0srw6U=";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue