From 6e93a12c48be91a51e0f946f7951e9ab3253c800 Mon Sep 17 00:00:00 2001 From: Harinn Date: Sun, 5 Apr 2026 21:10:54 +0700 Subject: [PATCH] valhalla: 3.5.1 -> 3.6.3 --- pkgs/development/libraries/valhalla/default.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/valhalla/default.nix b/pkgs/development/libraries/valhalla/default.nix index 16132a8d6d74..565477d03b26 100644 --- a/pkgs/development/libraries/valhalla/default.nix +++ b/pkgs/development/libraries/valhalla/default.nix @@ -24,21 +24,19 @@ stdenv.mkDerivation (finalAttrs: { pname = "valhalla"; - version = "3.5.1"; + version = "3.6.3"; src = fetchFromGitHub { owner = "valhalla"; repo = "valhalla"; tag = finalAttrs.version; - hash = "sha256-v/EwoJA1j8PuF9jOsmxQL6i+MT0rXbyLUE4HvBHUWDo="; + hash = "sha256-Q+h1k26UPiZEVhtonjipUS6gGIUZHM16pYgCxq/Zav0="; fetchSubmodules = true; }; postPatch = '' substituteInPlace src/bindings/python/CMakeLists.txt \ --replace-fail "\''${Python_SITEARCH}" "${placeholder "out"}/${python3.sitePackages}" - substituteInPlace CMakeLists.txt \ - --replace-fail "rapidjson_include_dir rapidjson" "rapidjson_include_dir RapidJSON" ''; nativeBuildInputs = [ @@ -79,7 +77,7 @@ stdenv.mkDerivation (finalAttrs: { }; meta = { - changelog = "https://github.com/valhalla/valhalla/blob/${finalAttrs.src.rev}/CHANGELOG.md"; + changelog = "https://github.com/valhalla/valhalla/blob/${finalAttrs.src.tag}/CHANGELOG.md"; description = "Open Source Routing Engine for OpenStreetMap"; homepage = "https://valhalla.readthedocs.io/"; license = lib.licenses.mit;