44 lines
817 B
Nix
44 lines
817 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
buildGoModule,
|
||
|
|
fetchFromGitHub,
|
||
|
|
leveldb,
|
||
|
|
geos,
|
||
|
|
}:
|
||
|
|
|
||
|
|
buildGoModule rec {
|
||
|
|
pname = "imposm";
|
||
|
|
version = "0.14.2";
|
||
|
|
|
||
|
|
src = fetchFromGitHub {
|
||
|
|
owner = "omniscale";
|
||
|
|
repo = "imposm3";
|
||
|
|
tag = "v${version}";
|
||
|
|
hash = "sha256-Bl6LSF/aN/c0lH93fxm2HGvxs7Grv4qJc/iN04AlQP0=";
|
||
|
|
};
|
||
|
|
|
||
|
|
vendorHash = null;
|
||
|
|
|
||
|
|
buildInputs = [
|
||
|
|
leveldb
|
||
|
|
geos
|
||
|
|
];
|
||
|
|
|
||
|
|
ldflags = [
|
||
|
|
"-s -w"
|
||
|
|
"-X github.com/omniscale/imposm3.Version=${version}"
|
||
|
|
];
|
||
|
|
|
||
|
|
# requires network access
|
||
|
|
doCheck = false;
|
||
|
|
|
||
|
|
meta = {
|
||
|
|
description = "Imports OpenStreetMap data into PostGIS";
|
||
|
|
homepage = "https://imposm.org/";
|
||
|
|
changelog = "https://github.com/omniscale/imposm3/releases/tag/${src.rev}";
|
||
|
|
license = lib.licenses.apsl20;
|
||
|
|
maintainers = with lib.maintainers; [ sikmir ];
|
||
|
|
mainProgram = "imposm";
|
||
|
|
};
|
||
|
|
}
|