5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
67 lines
1.5 KiB
Nix
67 lines
1.5 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, expat
|
|
, fetchpatch
|
|
, fmt
|
|
, proj
|
|
, bzip2
|
|
, zlib
|
|
, boost
|
|
, postgresql
|
|
, withLuaJIT ? false
|
|
, lua
|
|
, luajit
|
|
, libosmium
|
|
, protozero
|
|
, testers
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "osm2pgsql";
|
|
version = "1.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openstreetmap";
|
|
repo = "osm2pgsql";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-8Jefd8dfoh/an7wd+8iTM0uOKA4UiUo8t2WzZs4r/Ck=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix compatiblity with fmt 10.0. Remove with the next release
|
|
(fetchpatch {
|
|
url = "https://github.com/openstreetmap/osm2pgsql/commit/37aae6c874b58cd5cd27e70b2b433d6624fd7498.patch";
|
|
hash = "sha256-Fv2zPqhRDoJXlqB1Q9q5iskn28iqq3TYPcdqfu/pvD4=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
# Remove bundled libraries
|
|
rm -r contrib
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ expat fmt proj bzip2 zlib boost postgresql libosmium protozero ]
|
|
++ lib.optional withLuaJIT luajit
|
|
++ lib.optional (!withLuaJIT) lua;
|
|
|
|
cmakeFlags = [
|
|
"-DEXTERNAL_LIBOSMIUM=ON"
|
|
"-DEXTERNAL_PROTOZERO=ON"
|
|
"-DEXTERNAL_FMT=ON"
|
|
] ++ lib.optional withLuaJIT "-DWITH_LUAJIT:BOOL=ON";
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = finalAttrs.finalPackage;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "OpenStreetMap data to PostgreSQL converter";
|
|
homepage = "https://osm2pgsql.org";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ jglukasik das-g ];
|
|
};
|
|
})
|