forked from mirrors/nixpkgs
osm2pgsql: init at 0.92.1-unstable
This commit is contained in:
parent
aeaa79dc82
commit
228f33b21d
28
pkgs/tools/misc/osm2pgsql/default.nix
Normal file
28
pkgs/tools/misc/osm2pgsql/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue