biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / osmtogeojson / default.nix
blob07d989d2cc83cb027144ec473be2daf3b9312b77
1 { lib, buildNpmPackage, fetchFromGitHub }:
3 buildNpmPackage rec {
4   pname = "osmtogeojson";
5   version = "3.0.0-beta.5";
7   src = fetchFromGitHub {
8     owner = "tyrasd";
9     repo = pname;
10     rev = version;
11     hash = "sha256-T6d/KQQGoXHgV0iNhOms8d9zfjYMfnBNwPLShrEkHG4=";
12   };
14   postPatch = ''
15     cp ${./package-lock.json} ./package-lock.json
16   '';
18   npmDepsHash = "sha256-stAVuyjuRQthQ3jQdekmZYjeau9l0GzEEMkV1q5fT2k=";
19   dontNpmBuild = true;
21   meta = with lib; {
22     description = "Converts OSM data to GeoJSON";
23     homepage = "https://tyrasd.github.io/osmtogeojson/";
24     maintainers = with maintainers; [ thibautmarty ];
25     license = licenses.mit;
26     mainProgram = "osmtogeojson";
27   };