2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# 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";
|
2023-08-25 13:31:58 +00:00
|
|
|
version = "1.2.1-r4";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-08-25 13:31:58 +00:00
|
|
|
url = "https://github.com/ros2-gbp/lanelet2-release/archive/release/rolling/lanelet2_routing/1.2.1-4.tar.gz";
|
|
|
|
name = "1.2.1-4.tar.gz";
|
|
|
|
sha256 = "bf35029d0b01d16242cf431d39e6391d43de61ad4973ce5ce5a84c2eb1ec42b7";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|