nixpkgs/pkgs/tools/misc/osm2pgsql/default.nix

47 lines
1 KiB
Nix
Raw Normal View History

{ 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 {
pname = "osm2pgsql";
version = "1.4.0";
2017-04-17 22:19:41 +02:00
2019-07-11 13:06:01 +02:00
src = fetchFromGitHub {
owner = "openstreetmap";
repo = pname;
2019-07-11 13:06:01 +02:00
rev = version;
sha256 = "1if76vw9jkc9jn4v0vvgwnpscjckk2cap93a8iqah8mqzx233y8s";
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 ]
2020-02-10 19:28:33 +01:00
++ stdenv.lib.optional withLuaJIT luajit
++ stdenv.lib.optional (!withLuaJIT) lua;
2020-06-29 00:23:21 +02:00
cmakeFlags = [ "-DEXTERNAL_LIBOSMIUM=ON" "-DEXTERNAL_PROTOZERO=ON" ]
2020-06-29 00:21:06 +02:00
++ stdenv.lib.optional withLuaJIT "-DWITH_LUAJIT:BOOL=ON";
2019-07-11 13:06:01 +02:00
2019-10-30 12:34:47 +01:00
NIX_CFLAGS_COMPILE = "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H";
2019-07-11 13:06:01 +02:00
meta = with lib; {
2017-04-17 22:19:41 +02:00
description = "OpenStreetMap data to PostgreSQL converter";
homepage = "https://osm2pgsql.org";
2019-07-11 13:06:01 +02:00
license = licenses.gpl2;
2020-02-10 19:28:33 +01:00
platforms = with platforms; linux ++ darwin;
maintainers = with maintainers; [ jglukasik das-g ];
2017-04-17 22:19:41 +02:00
};
}