2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv
|
2020-06-29 00:19:38 +02:00
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, expat
|
|
|
|
, proj
|
|
|
|
, bzip2
|
|
|
|
, zlib
|
|
|
|
, boost
|
|
|
|
, postgresql
|
|
|
|
, withLuaJIT ? false
|
|
|
|
, lua
|
|
|
|
, luajit
|
2020-06-29 00:21:06 +02:00
|
|
|
, libosmium
|
2020-06-29 00:23:21 +02:00
|
|
|
, protozero
|
2020-06-29 00:19:38 +02:00
|
|
|
}:
|
2017-04-17 22:19:41 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "osm2pgsql";
|
2021-08-15 19:18:29 +02:00
|
|
|
version = "1.5.1";
|
2017-04-17 22:19:41 +02:00
|
|
|
|
2019-07-11 13:06:01 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "openstreetmap";
|
2019-10-13 11:37:39 +02:00
|
|
|
repo = pname;
|
2019-07-11 13:06:01 +02:00
|
|
|
rev = version;
|
2021-08-15 19:18:29 +02:00
|
|
|
sha256 = "sha256-0mUGvu5o2MhlriNAUAUoyDrFgTw2weGGbQcBzaauKEQ=";
|
2017-04-17 22:19:41 +02:00
|
|
|
};
|
|
|
|
|
2019-07-11 13:06:01 +02:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2020-06-29 00:23:21 +02:00
|
|
|
buildInputs = [ expat proj bzip2 zlib boost postgresql libosmium protozero ]
|
2021-01-15 10:19:50 +01:00
|
|
|
++ lib.optional withLuaJIT luajit
|
|
|
|
++ lib.optional (!withLuaJIT) lua;
|
2020-02-10 19:28:33 +01:00
|
|
|
|
2020-06-29 00:23:21 +02:00
|
|
|
cmakeFlags = [ "-DEXTERNAL_LIBOSMIUM=ON" "-DEXTERNAL_PROTOZERO=ON" ]
|
2021-01-15 10:19:50 +01:00
|
|
|
++ lib.optional withLuaJIT "-DWITH_LUAJIT:BOOL=ON";
|
2019-07-11 13:06:01 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-04-17 22:19:41 +02:00
|
|
|
description = "OpenStreetMap data to PostgreSQL converter";
|
2020-12-09 14:07:19 +01:00
|
|
|
homepage = "https://osm2pgsql.org";
|
2021-06-21 19:50:05 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2020-02-10 19:28:33 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2020-06-29 00:35:02 +02:00
|
|
|
maintainers = with maintainers; [ jglukasik das-g ];
|
2017-04-17 22:19:41 +02:00
|
|
|
};
|
|
|
|
}
|