1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #24972 from Hodapp87/osm2pgsql

osm2pgsql: init at 0.92.1-unstable
This commit is contained in:
Michael Raskin 2017-04-17 22:26:09 +02:00 committed by GitHub
commit e223191da6
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchgit, cmake, expat, proj, bzip2, zlib, boost, postgresql, lua}:
let
version = "0.92.1-unstable";
in
stdenv.mkDerivation rec {
name = "osm2pgsql-${version}";
src = fetchgit {
url = "https://github.com/openstreetmap/osm2pgsql.git";
rev = "2b72b2121e91b72b0db6911d65c5165ca46d9d66";
# Still waiting on release after:
# https://github.com/openstreetmap/osm2pgsql/pull/684
# https://github.com/openstreetmap/osm2pgsql/issues/634
#rev = "refs/tags/${version}";
sha256 = "1v6s863zsv9p2mni35gfamawj0xr2cv2p8a31z7sijf8m6fn0vpy";
};
nativeBuildInputs = [cmake];
buildInputs = [expat proj bzip2 zlib boost postgresql lua];
meta = {
description = "OpenStreetMap data to PostgreSQL converter";
version = "0.92.1-unstable";
homepage = https://github.com/openstreetmap/osm2pgsql;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
};
}

View file

@ -14806,6 +14806,8 @@ with pkgs;
oroborus = callPackage ../applications/window-managers/oroborus {};
osm2pgsql = callPackage ../tools/misc/osm2pgsql { };
ostinato = callPackage ../applications/networking/ostinato { };
panamax_api = callPackage ../applications/networking/cluster/panamax/api {