mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 10:14:50 +03:00
27 lines
1.1 KiB
Nix
27 lines
1.1 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# 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";
|
|
version = "0.6.15-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ipa320/cob_navigation-release/archive/release/noetic/cob_navigation_local/0.6.15-1.tar.gz";
|
|
name = "0.6.15-1.tar.gz";
|
|
sha256 = "b0f695bcb4346dad3bfdd3c6ed54f5409b7b5ceb1e74ba6f965eac0113adda94";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ catkin ];
|
|
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 ];
|
|
};
|
|
}
|