a3d4720129
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
34 lines
878 B
Nix
34 lines
878 B
Nix
{ lib, stdenv, fetchFromGitHub, sqlite, zlib, perl, testers }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "tippecanoe";
|
|
version = "2.16.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "felt";
|
|
repo = "tippecanoe";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-C0FCdCgycCh+3iG4D9HMOzx/r+MoYdJUgWL5fs8T1rU=";
|
|
};
|
|
|
|
buildInputs = [ sqlite zlib ];
|
|
checkInputs = [ perl ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
enableParallelBuilding = true;
|
|
doCheck = true;
|
|
|
|
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 = with maintainers; [ sikmir ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|