osmtogeojson: init at 3.0.0-beta.5

This commit is contained in:
Thibaut Marty 2023-05-08 21:31:20 +02:00
parent 05b1a97381
commit b0a7806728
3 changed files with 2996 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, buildNpmPackage, fetchFromGitHub }:
buildNpmPackage rec {
pname = "osmtogeojson";
version = "3.0.0-beta.5";
src = fetchFromGitHub {
owner = "tyrasd";
repo = pname;
rev = version;
hash = "sha256-T6d/KQQGoXHgV0iNhOms8d9zfjYMfnBNwPLShrEkHG4=";
};
postPatch = ''
cp ${./package-lock.json} ./package-lock.json
'';
npmDepsHash = "sha256-stAVuyjuRQthQ3jQdekmZYjeau9l0GzEEMkV1q5fT2k=";
dontNpmBuild = true;
meta = with lib; {
description = "Converts OSM data to GeoJSON";
homepage = "https://tyrasd.github.io/osmtogeojson/";
maintainers = with maintainers; [ thibautmarty ];
license = licenses.mit;
};
}

File diff suppressed because it is too large Load diff

View file

@ -32995,6 +32995,8 @@ with pkgs;
osmium-tool = callPackage ../applications/misc/osmium-tool { };
osmtogeojson = callPackage ../applications/misc/osmtogeojson { };
owamp = callPackage ../applications/networking/owamp { };
owofetch = callPackage ../tools/misc/owofetch {