mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
commit
c65f597a29
@ -5840,6 +5840,10 @@
|
||||
github = "sikmir";
|
||||
githubId = 688044;
|
||||
name = "Nikolay Korotkiy";
|
||||
keys = [{
|
||||
longkeyid = "rsa2048/0xD1DE6D7F693663A5";
|
||||
fingerprint = "ADF4 C13D 0E36 1240 BD01 9B51 D1DE 6D7F 6936 63A5";
|
||||
}];
|
||||
};
|
||||
simonvandel = {
|
||||
email = "simon.vandel@gmail.com";
|
||||
|
29
pkgs/applications/misc/tippecanoe/default.nix
Normal file
29
pkgs/applications/misc/tippecanoe/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -20815,6 +20815,8 @@ in
|
||||
inherit (linuxPackages) x86_energy_perf_policy;
|
||||
};
|
||||
|
||||
tippecanoe = callPackage ../applications/misc/tippecanoe { };
|
||||
|
||||
tmatrix = callPackage ../applications/misc/tmatrix { };
|
||||
|
||||
tnef = callPackage ../applications/misc/tnef { };
|
||||
|
Loading…
Reference in New Issue
Block a user