mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
28 lines
664 B
Nix
28 lines
664 B
Nix
{ 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;
|
|
};
|
|
}
|