tippecanoe: init at 1.34.3

This commit is contained in:
Nikolay Korotkiy 2019-09-08 13:10:36 +03:00
parent ec27f6ff3c
commit 3a7c980ba1
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, sqlite, zlib, perl }:
stdenv.mkDerivation rec {
pname = "tippecanoe";
version = "1.34.3";
src = fetchFromGitHub {
owner = "mapbox";
repo = pname;
rev = version;
sha256 = "08pkxzwp4w5phrk9b0vszxnx8yymp50v0bcw96pz8qwk48z4xm0i";
};
buildInputs = [ sqlite zlib ];
checkInputs = [ perl ];
makeFlags = [ "PREFIX=$(out)" ];
enableParallelBuilding = true;
doCheck = true;
meta = with stdenv.lib; {
description = "Build vector tilesets from large collections of GeoJSON features";
homepage = https://github.com/mapbox/tippecanoe;
license = licenses.bsd2;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.linux ++ platforms.darwin;
};
}

View file

@ -20802,6 +20802,8 @@ in
inherit (linuxPackages) x86_energy_perf_policy;
};
tippecanoe = callPackage ../applications/misc/tippecanoe { };
tmatrix = callPackage ../applications/misc/tmatrix { };
tnef = callPackage ../applications/misc/tnef { };