lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 28 lines 722 B view raw
1{ lib, stdenv, fetchFromGitHub, cmake, protozero, expat, zlib, bzip2, boost }: 2 3stdenv.mkDerivation rec { 4 pname = "libosmium"; 5 version = "2.17.1"; 6 7 src = fetchFromGitHub { 8 owner = "osmcode"; 9 repo = "libosmium"; 10 rev = "v${version}"; 11 sha256 = "sha256-riNcIC60gw9qxF8UmPjq03XuD3of0BxKbZpgwjMNh3c="; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 16 buildInputs = [ protozero zlib bzip2 expat boost ]; 17 18 cmakeFlags = [ "-DINSTALL_GDALCPP:BOOL=ON" ]; 19 20 doCheck = true; 21 22 meta = with lib; { 23 description = "Fast and flexible C++ library for working with OpenStreetMap data"; 24 homepage = "https://osmcode.org/libosmium/"; 25 license = licenses.boost; 26 maintainers = with maintainers; [ das-g ]; 27 }; 28}