Unverified Commit a093c35b authored by Robert Scott's avatar Robert Scott Committed by GitHub
Browse files

Merge pull request #186762 from sikmir/osm2pgsql

osm2pgsql: 1.6.0 → 1.7.0
parents 0442e402 38f9a57c
Loading
Loading
Loading
Loading
+17 −6
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
, fetchFromGitHub
, cmake
, expat
, fmt
, proj
, bzip2
, zlib
@@ -12,33 +13,43 @@
, luajit
, libosmium
, protozero
, rapidjson
}:

stdenv.mkDerivation rec {
  pname = "osm2pgsql";
  version = "1.6.0";
  version = "1.7.0";

  src = fetchFromGitHub {
    owner = "openstreetmap";
    repo = pname;
    rev = version;
    sha256 = "sha256-6FVMv+DowMYdRdsQFL2iwG/V9D2cLWkHUVkmR3/TuUI=";
    hash = "sha256-MWJzCZdqvy/nH1Doj0fmGuzTubaHDnPOED7qgzvJ3ZU=";
  };

  postPatch = ''
    # Remove bundled libraries
    rm -r contrib
  '';

  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) lua;

  cmakeFlags = [ "-DEXTERNAL_LIBOSMIUM=ON" "-DEXTERNAL_PROTOZERO=ON" ]
    ++ lib.optional withLuaJIT "-DWITH_LUAJIT:BOOL=ON";
  cmakeFlags = [
    "-DEXTERNAL_LIBOSMIUM=ON"
    "-DEXTERNAL_PROTOZERO=ON"
    "-DEXTERNAL_RAPIDJSON=ON"
    "-DEXTERNAL_FMT=ON"
  ] ++ lib.optional withLuaJIT "-DWITH_LUAJIT:BOOL=ON";

  meta = with lib; {
    description = "OpenStreetMap data to PostgreSQL converter";
    homepage = "https://osm2pgsql.org";
    license = licenses.gpl2Plus;
    platforms = with platforms; linux ++ darwin;
    platforms = platforms.unix;
    maintainers = with maintainers; [ jglukasik das-g ];
  };
}