1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/move-base-flex/default.nix
Ben Wolsieffer 8edcf79beb regenerate ros-kinetic, Thu Mar 21 01:13:03 2019
regenerate ros-kinetic, Fri Mar 22 14:03:51 2019

regenerate ros-kinetic, Sat Mar 23 00:05:23 2019

regenerate ros-kinetic, Sat Mar 23 00:38:46 2019

regenerate ros-kinetic, Sat Mar 23 00:58:04 2019

regenerate ros-melodic, Sat Mar 23 01:14:22 2019

regenerate ros-kinetic, Tue Apr  2 01:07:09 2019

regenerate ros-kinetic, Tue Apr  2 01:22:33 2019

regenerate ros-kinetic, Tue Apr  2 20:47:59 2019

regenerate ros-kinetic, Tue Apr  2 22:55:05 2019

regenerate ros-melodic, Tue Apr  2 22:59:35 2019

regenerate ros-kinetic, Tue Apr  2 23:08:34 2019

regenerate ros-melodic, Tue Apr  2 23:11:56 2019

regenerate ros-melodic, Wed Apr  3 12:38:28 2019

regenerate ros-kinetic, Wed Apr  3 16:06:39 2019

regenerate ros-kinetic, Wed Apr  3 18:31:01 2019
2019-04-06 01:48:03 -04:00

24 lines
1.8 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, mbf-abstract-core, mbf-costmap-core, mbf-msgs, catkin, mbf-simple-nav, mbf-abstract-nav, mbf-costmap-nav }:
buildRosPackage {
pname = "ros-kinetic-move-base-flex";
version = "0.2.3";
src = fetchurl {
url = https://github.com/uos-gbp/move_base_flex-release/archive/release/kinetic/move_base_flex/0.2.3-0.tar.gz;
sha256 = "693963bc17a29abddf9bbf33b7e56ffa1b971bde3ce18968a9255f4a34d6eca3";
};
propagatedBuildInputs = [ mbf-abstract-core mbf-costmap-core mbf-msgs mbf-simple-nav mbf-abstract-nav mbf-costmap-nav ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Move Base Flex (MBF) is a backwards-compatible replacement for move_base. MBF can use existing plugins for move_base, and provides an enhanced version of the planner, controller and recovery plugin ROS interfaces. It exposes action servers for planning, controlling and recovering, providing detailed information of the current state and the plugins feedback. An external executive logic can use MBF and its actions to perform smart and flexible navigation strategies. Furthermore, MBF enables the use of other map representations, e.g. meshes or grid_map
This package is a meta package and refers to the Move Base Flex stack packages.The abstract core of MBF without any binding to a map representation is represented by the <a href="http://wiki.ros.org/mbf_abstract_nav">mbf_abstract_nav</a> and the <a href="http://wiki.ros.org/mbf_abstract_core">mbf_abstract_core</a>. For navigation on costmaps see <a href="http://wiki.ros.org/mbf_costmap_nav">mbf_costmap_nav</a> and <a href="http://wiki.ros.org/mbf_costmap_core">mbf_costmap_core</a>.'';
#license = lib.licenses.BSD;
};
}