nixpkgs/pkgs/applications/misc/tippecanoe/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
936 B
Nix
Raw Normal View History

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";
2023-12-24 13:41:53 +00:00
version = "2.39.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;
2023-12-24 13:41:53 +00:00
hash = "sha256-uKp/lFOOsoLiOSzydroGe4VtBv+YqnfXiV1PdSe0Qj0=";
2019-09-08 10:10:36 +00:00
};
buildInputs = [ sqlite zlib ];
nativeCheckInputs = [ perl ];
2019-09-08 10:10:36 +00:00
makeFlags = [ "PREFIX=$(out)" ];
enableParallelBuilding = true;
2023-07-22 12:36:22 +00:00
# https://github.com/felt/tippecanoe/issues/148
doCheck = false;
2019-09-08 10:10:36 +00:00
2022-09-12 18:08:33 +00:00
passthru.tests.version = testers.testVersion {
package = finalAttrs.finalPackage;
version = "v${finalAttrs.version}";
};
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
})