Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
817 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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";
};
}