Merge pull request #108813 from sikmir/osmium

This commit is contained in:
Sandro
2021-01-09 17:46:26 +01:00
committed by GitHub
3 changed files with 11 additions and 7 deletions

View File

@@ -2,19 +2,21 @@
stdenv.mkDerivation rec {
pname = "libosmium";
version = "2.15.6";
version = "2.16.0";
src = fetchFromGitHub {
owner = "osmcode";
repo = "libosmium";
rev = "v${version}";
sha256 = "0rqy18bbakp41f44y5id9ixh0ar2dby46z17p4115z8k1vv9znq2";
sha256 = "1na51g6xfm1bx0d0izbg99cwmqn0grp0g41znn93xnhs202qnb2h";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ protozero zlib bzip2 expat boost ];
cmakeFlags = [ "-DINSTALL_GDALCPP:BOOL=ON" ];
doCheck = true;
meta = with stdenv.lib; {