48 lines
989 B
Nix
48 lines
989 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
sqlite,
|
|
zlib,
|
|
perl,
|
|
testers,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "tippecanoe";
|
|
version = "2.72.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "felt";
|
|
repo = "tippecanoe";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-5Ox/2K9cls8lZ+C/Fh5VQmgNEtbdMW0mh4fhBl6ecP8=";
|
|
};
|
|
|
|
buildInputs = [
|
|
sqlite
|
|
zlib
|
|
];
|
|
nativeCheckInputs = [ perl ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# https://github.com/felt/tippecanoe/issues/148
|
|
doCheck = false;
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = finalAttrs.finalPackage;
|
|
version = "v${finalAttrs.version}";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Build vector tilesets from large collections of GeoJSON features";
|
|
homepage = "https://github.com/felt/tippecanoe";
|
|
license = licenses.bsd2;
|
|
maintainers = teams.geospatial.members;
|
|
platforms = platforms.unix;
|
|
mainProgram = "tippecanoe";
|
|
};
|
|
})
|