2020-10-23 13:30:31 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2020-10-23 13:30:31 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, cob-navigation-config, cob-supported-robots, dwa-local-planner, move-base, roslaunch, rviz }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-cob-navigation-local";
|
2023-01-27 13:23:44 +00:00
|
|
|
version = "0.6.14-r1";
|
2020-10-23 13:30:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-01-27 13:23:44 +00:00
|
|
|
url = "https://github.com/ipa320/cob_navigation-release/archive/release/noetic/cob_navigation_local/0.6.14-1.tar.gz";
|
|
|
|
name = "0.6.14-1.tar.gz";
|
|
|
|
sha256 = "1998136fc253fcdbcd4465efd2aa21dab3a1f21c515a53b3805a6d42d7031244";
|
2020-10-23 13:30:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-10-23 13:30:31 +00:00
|
|
|
checkInputs = [ cob-supported-robots roslaunch ];
|
|
|
|
propagatedBuildInputs = [ cob-navigation-config dwa-local-planner move-base rviz ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package holds config and launch files for running the <a href="http://ros.org/wiki/move_base">move_base</a> node on the <a href="http://ros.org/wiki/care-o-bot">Care-O-bot</a> in an odometric frame.
|
|
|
|
No static map is needed for the move_base node in this configuration.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|