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

28 lines
765 B
Nix
Raw Normal View History

2019-07-11 11:06:01 +00:00
{ stdenv, fetchFromGitHub, cmake, expat, proj, bzip2, zlib, boost, postgresql, lua}:
2017-04-17 20:19:41 +00:00
stdenv.mkDerivation rec {
pname = "osm2pgsql";
version = "1.0.0";
2017-04-17 20:19:41 +00:00
2019-07-11 11:06:01 +00:00
src = fetchFromGitHub {
owner = "openstreetmap";
repo = pname;
2019-07-11 11:06:01 +00:00
rev = version;
sha256 = "1g9qc1z5gzdjd37n586vcmq1qli0lkhbnsrnky0mf22szzv8iwfx";
2017-04-17 20:19:41 +00:00
};
2019-07-11 11:06:01 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ expat proj bzip2 zlib boost postgresql lua ];
NIX_CFLAGS_COMPILE = [ "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H" ];
meta = with stdenv.lib; {
2017-04-17 20:19:41 +00:00
description = "OpenStreetMap data to PostgreSQL converter";
homepage = "https://github.com/openstreetmap/osm2pgsql";
2019-07-11 11:06:01 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ jglukasik ];
2017-04-17 20:19:41 +00:00
};
}