Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
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";
|
|
};
|
|
}
|