2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, map-server, costmap-2d, amcl, base-local-planner, navfn, slam-karto, fetch-depth-layer, catkin, rotate-recovery, move-base, move-base-msgs, voxel-grid, clear-costmap-recovery, roslaunch, fetch-maps }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-fetch-navigation";
|
2019-04-06 17:11:55 -04:00
|
|
|
version = "0.8.1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-06 17:11:55 -04:00
|
|
|
url = https://github.com/fetchrobotics-gbp/fetch_ros-release/archive/release/melodic/fetch_navigation/0.8.1-0.tar.gz;
|
|
|
|
sha256 = "533785a8a7b95afaa733d8670b138f897fcf5472326aac258478f23e88fbe129";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ roslaunch ];
|
|
|
|
propagatedBuildInputs = [ map-server costmap-2d amcl base-local-planner navfn slam-karto fetch-depth-layer rotate-recovery move-base move-base-msgs voxel-grid clear-costmap-recovery fetch-maps ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Configuration and launch files for running ROS navigation on Fetch.'';
|
|
|
|
#license = lib.licenses.BSD;
|
|
|
|
};
|
|
|
|
}
|