Commit b0a78067 authored by Thibaut Marty's avatar Thibaut Marty
Browse files

osmtogeojson: init at 3.0.0-beta.5

parent 05b1a973
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+2967 −0

File added.

Preview size limit exceeded, changes collapsed.

+2 −0
Original line number Diff line number Diff line
@@ -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 {