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