2022-09-12 18:08:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, sqlite, zlib, perl, testers }:
|
2019-09-08 10:10:36 +00:00
|
|
|
|
2022-09-12 18:08:33 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-09-08 10:10:36 +00:00
|
|
|
pname = "tippecanoe";
|
2022-12-31 23:48:55 +00:00
|
|
|
version = "2.17.0";
|
2019-09-08 10:10:36 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2022-09-12 18:08:33 +00:00
|
|
|
owner = "felt";
|
|
|
|
repo = "tippecanoe";
|
|
|
|
rev = finalAttrs.version;
|
2022-12-31 23:48:55 +00:00
|
|
|
hash = "sha256-GQPex+NX1DDOBWs/tBUsCtIWZ/+jxeblTRQEvfS2WuA=";
|
2019-09-08 10:10:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ sqlite zlib ];
|
|
|
|
checkInputs = [ perl ];
|
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
|
2022-09-12 18:08:33 +00:00
|
|
|
passthru.tests.version = testers.testVersion {
|
|
|
|
package = finalAttrs.finalPackage;
|
|
|
|
version = "v${finalAttrs.version}";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-08 10:10:36 +00:00
|
|
|
description = "Build vector tilesets from large collections of GeoJSON features";
|
2022-09-12 18:08:33 +00:00
|
|
|
homepage = "https://github.com/felt/tippecanoe";
|
2019-09-08 10:10:36 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ sikmir ];
|
2022-09-12 18:08:33 +00:00
|
|
|
platforms = platforms.unix;
|
2019-09-08 10:10:36 +00:00
|
|
|
};
|
2022-09-12 18:08:33 +00:00
|
|
|
})
|