Files

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

91 lines
1.5 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
expat,
fmt,
proj,
bzip2,
cli11,
zlib,
boost,
libpq,
python3,
withLuaJIT ? false,
lua,
luajit,
libosmium,
nlohmann_json,
opencv,
potrace,
protozero,
testers,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "osm2pgsql";
version = "2.2.0";
src = fetchFromGitHub {
owner = "osm2pgsql-dev";
repo = "osm2pgsql";
rev = finalAttrs.version;
hash = "sha256-ZKSyMNc+EHY4QBTLtUiWiTMEcmAAbrV1xqxmvNF96f8=";
};
postPatch = ''
# Remove bundled libraries
rm -r contrib
'';
nativeBuildInputs = [ cmake ];
buildInputs = [
boost
bzip2
cli11
expat
fmt
libosmium
libpq
nlohmann_json
opencv
potrace
proj
protozero
(python3.withPackages (
p: with p; [
psycopg2
pyosmium
]
))
zlib
]
++ lib.optional withLuaJIT luajit
++ lib.optional (!withLuaJIT) lua;
cmakeFlags = [
(lib.cmakeBool "EXTERNAL_LIBOSMIUM" true)
(lib.cmakeBool "EXTERNAL_PROTOZERO" true)
(lib.cmakeBool "EXTERNAL_FMT" true)
(lib.cmakeBool "WITH_LUAJIT" withLuaJIT)
];
passthru.tests.version = testers.testVersion {
package = finalAttrs.finalPackage;
};
meta = {
description = "OpenStreetMap data to PostgreSQL converter";
homepage = "https://osm2pgsql.org";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [
jglukasik
das-g
];
teams = [ lib.teams.geospatial ];
};
})