Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

martin: 0.9.1 → 0.14.2 #267315

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions pkgs/servers/geospatial/martin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@

rustPlatform.buildRustPackage rec {
pname = "martin";
version = "0.9.1";
version = "0.14.2";

src = fetchFromGitHub {
owner = "maplibre";
repo = "martin";
rev = "v${version}";
hash = "sha256-Jq72aEwM5bIaVywmS3HetR6nnBZnr3oa9a/4ZbgeL9E=";
hash = "sha256-gcivJsHXc4n9dn/y1CMkEQaJGIALnMqfrK6mSFK7SDE=";
};

cargoHash = "sha256-RO9nUH2+0jOCbvGtZ5j802mL85tY+Jz7ygPrNuFeE98=";
cargoHash = "sha256-XqCzWbU81p3XpSpU4RpspGBJg3B4QjrXXkMbNEsdmyo=";

nativeBuildInputs = [ pkg-config ];

Expand Down Expand Up @@ -59,15 +59,22 @@ rustPlatform.buildRustPackage rec {
"--skip table_source"
"--skip tables_tilejson"
"--skip tables_multiple_geom_ok"
"--skip pmt_get_raster"
"--skip pmt_get_tilejson_gzip"
"--skip pmt_get_catalog"
"--skip pmt_get_catalog_gzip"
"--skip pmt_get_raster_gzip"
"--skip pmt_get_tilejson"
"--skip summary"
];

meta = with lib; {
meta = {
description = "Blazing fast and lightweight PostGIS vector tiles server";
homepage = "https://martin.maplibre.org/";
license = with licenses; [
license = with lib.licenses; [
mit # or
asl20
];
maintainers = with maintainers; [ sikmir ];
maintainers = lib.teams.geospatial.members;
};
}
Loading