libosmium: init at 2.14.2

This commit is contained in:
Raphael Borun Das Gupta 2018-10-28 16:37:49 +01:00
parent 95a1054a48
commit 78dbe69543
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, cmake, protozero, expat, zlib, bzip2, boost }:
stdenv.mkDerivation rec {
name = "libosmium-${version}";
version = "2.14.2";
src = fetchFromGitHub {
owner = "osmcode";
repo = "libosmium";
rev = "v${version}";
sha256 = "123ri1l0a2b9fljgpwsl7z2w4i3kmgxz79d4ns9z4mwbp8sw0250";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ protozero zlib bzip2 expat boost ];
meta = with stdenv.lib; {
description = "Fast and flexible C++ library for working with OpenStreetMap data";
homepage = "https://osmcode.org/libosmium/";
license = licenses.boost;
maintainers = with maintainers; [ das-g ];
};
}

View File

@ -10976,6 +10976,8 @@ with pkgs;
libosip_3 = callPackage ../development/libraries/osip/3.nix {};
libosmium = callPackage ../development/libraries/libosmium { };
libosmocore = callPackage ../applications/misc/libosmocore { };
libosmpbf = callPackage ../development/libraries/libosmpbf {};