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

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

35 lines
878 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";
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}";
};
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
})