1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/cob-navigation-global/default.nix

25 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, roslaunch, map-server, amcl, catkin, cob-default-env-config, move-base, cob-scan-unifier, dwa-local-planner, rviz, cob-linear-nav, topic-tools, cob-supported-robots, cob-navigation-config }:
buildRosPackage {
pname = "ros-kinetic-cob-navigation-global";
version = "0.6.7";
src = fetchurl {
url = https://github.com/ipa320/cob_navigation-release/archive/release/kinetic/cob_navigation_global/0.6.7-0.tar.gz;
sha256 = "130af0049cc492cc57eb84829a925f72fddaa1b10c4171ff9173ef7f11f10705";
};
checkInputs = [ cob-supported-robots roslaunch cob-default-env-config ];
propagatedBuildInputs = [ map-server amcl cob-default-env-config move-base cob-scan-unifier dwa-local-planner rviz cob-linear-nav topic-tools cob-navigation-config ];
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>.
The move_base node is configured to run over a pre-specified static map.'';
#license = lib.licenses.Apache 2.0;
};
}