Unverified Commit 7fed512f authored by Nikolay Korotkiy's avatar Nikolay Korotkiy
Browse files

libosmium: 2.20.0 → 2.21.0

parent 2a4d344b
Loading
Loading
Loading
Loading
+11 −11
Original line number Diff line number Diff line
@@ -11,15 +11,15 @@
  lz4,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "libosmium";
  version = "2.20.0";
  version = "2.21.0";

  src = fetchFromGitHub {
    owner = "osmcode";
    repo = "libosmium";
    rev = "v${version}";
    sha256 = "sha256-QM6Nj2cmrhUysR2enFKhTWXdBXNqM21/Yqdn/zXEfYE=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-IGZQBziXKYVG+uKLjHr6LsIF5H8klq6LGF5j1KrfHZU=";
  };

  nativeBuildInputs = [ cmake ];
@@ -33,18 +33,18 @@ stdenv.mkDerivation rec {
    lz4
  ];

  cmakeFlags = [ "-DINSTALL_GDALCPP:BOOL=ON" ];
  cmakeFlags = [ (lib.cmakeBool "INSTALL_GDALCPP" true) ];

  doCheck = true;

  meta = with lib; {
  meta = {
    description = "Fast and flexible C++ library for working with OpenStreetMap data";
    homepage = "https://osmcode.org/libosmium/";
    license = licenses.boost;
    license = lib.licenses.boost;
    changelog = [
      "https://github.com/osmcode/libosmium/releases/tag/v${version}"
      "https://github.com/osmcode/libosmium/blob/v${version}/CHANGELOG.md"
      "https://github.com/osmcode/libosmium/releases/tag/v${finalAttrs.version}"
      "https://github.com/osmcode/libosmium/blob/v${finalAttrs.version}/CHANGELOG.md"
    ];
    maintainers = with maintainers; teams.geospatial.members ++ [ das-g ];
    maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ das-g ]);
  };
}
})