libosmium: 2.20.0 → 2.21.0

This commit is contained in:
Nikolay Korotkiy
2025-01-13 21:59:51 +04:00
parent 2a4d344b9a
commit 7fed512fbc
+11 -11
View File
@@ -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 ]);
};
}
})