1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/lanelet2-routing/default.nix

27 lines
926 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-core, boost, gtest, lanelet2-core, lanelet2-traffic-rules, mrt-cmake-modules }:
buildRosPackage {
pname = "ros-rolling-lanelet2-routing";
version = "1.2.1-r6";
src = fetchurl {
url = "https://github.com/ros2-gbp/lanelet2-release/archive/release/rolling/lanelet2_routing/1.2.1-6.tar.gz";
name = "1.2.1-6.tar.gz";
sha256 = "bf9dcb260c136a1763a308dad1d2c2ddd396629c9020ac4deae8752cebec89d7";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-core ];
checkInputs = [ gtest ];
propagatedBuildInputs = [ boost lanelet2-core lanelet2-traffic-rules mrt-cmake-modules ];
nativeBuildInputs = [ ament-cmake-core mrt-cmake-modules ];
meta = {
description = "Routing module for lanelet2";
license = with lib.licenses; [ bsdOriginal ];
};
}