Files
nixpkgs/pkgs/by-name/os/osm2pgsql/package.nix
Nikolay Korotkiy 4039adafc4 osm2pgsql: fix build
2025-11-17 10:00:41 +04:00

91 lines
1.5 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
expat,
fmt_11,
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_11
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 ];
};
})