libosmium: init at 2.14.2
This commit is contained in:
parent
95a1054a48
commit
78dbe69543
24
pkgs/development/libraries/libosmium/default.nix
Normal file
24
pkgs/development/libraries/libosmium/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
x
Reference in New Issue
Block a user