osm2pgsql: 1.6.0 → 1.7.0

This commit is contained in:
Nikolay Korotkiy 2022-08-15 11:04:01 +03:00
parent 5c37f7fa7e
commit 38f9a57c3b
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5

View file

@ -2,6 +2,7 @@
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake
, expat , expat
, fmt
, proj , proj
, bzip2 , bzip2
, zlib , zlib
@ -12,33 +13,43 @@
, luajit , luajit
, libosmium , libosmium
, protozero , protozero
, rapidjson
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "osm2pgsql"; pname = "osm2pgsql";
version = "1.6.0"; version = "1.7.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "openstreetmap"; owner = "openstreetmap";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-6FVMv+DowMYdRdsQFL2iwG/V9D2cLWkHUVkmR3/TuUI="; hash = "sha256-MWJzCZdqvy/nH1Doj0fmGuzTubaHDnPOED7qgzvJ3ZU=";
}; };
postPatch = ''
# Remove bundled libraries
rm -r contrib
'';
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
buildInputs = [ expat proj bzip2 zlib boost postgresql libosmium protozero ] buildInputs = [ expat fmt proj bzip2 zlib boost postgresql libosmium protozero rapidjson ]
++ lib.optional withLuaJIT luajit ++ lib.optional withLuaJIT luajit
++ lib.optional (!withLuaJIT) lua; ++ lib.optional (!withLuaJIT) lua;
cmakeFlags = [ "-DEXTERNAL_LIBOSMIUM=ON" "-DEXTERNAL_PROTOZERO=ON" ] cmakeFlags = [
++ lib.optional withLuaJIT "-DWITH_LUAJIT:BOOL=ON"; "-DEXTERNAL_LIBOSMIUM=ON"
"-DEXTERNAL_PROTOZERO=ON"
"-DEXTERNAL_RAPIDJSON=ON"
"-DEXTERNAL_FMT=ON"
] ++ lib.optional withLuaJIT "-DWITH_LUAJIT:BOOL=ON";
meta = with lib; { meta = with lib; {
description = "OpenStreetMap data to PostgreSQL converter"; description = "OpenStreetMap data to PostgreSQL converter";
homepage = "https://osm2pgsql.org"; homepage = "https://osm2pgsql.org";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = with platforms; linux ++ darwin; platforms = platforms.unix;
maintainers = with maintainers; [ jglukasik das-g ]; maintainers = with maintainers; [ jglukasik das-g ];
}; };
} }