2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-cmake-pytest, ament-lint-auto, ament-lint-common, graphicsmagick, launch, launch-ros, launch-testing, nav-msgs, nav2-common, nav2-msgs, nav2-util, rclcpp, rclcpp-lifecycle, std-msgs, tf2, yaml-cpp-vendor }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-nav2-map-server";
|
2024-02-02 13:15:52 +00:00
|
|
|
version = "1.2.6-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-02-02 13:15:52 +00:00
|
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/iron/nav2_map_server/1.2.6-1.tar.gz";
|
|
|
|
name = "1.2.6-1.tar.gz";
|
|
|
|
sha256 = "7c03f458309fbc42a919b53f4551180c2f9c7e632083f487062763d0705c79c8";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake nav2-common ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common launch launch-testing ];
|
|
|
|
propagatedBuildInputs = [ graphicsmagick launch-ros launch-testing nav-msgs nav2-msgs nav2-util rclcpp rclcpp-lifecycle std-msgs tf2 yaml-cpp-vendor ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Refactored map server for ROS2 Navigation'';
|
|
|
|
license = with lib.licenses; [ asl20 bsd3 ];
|
|
|
|
};
|
|
|
|
}
|