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, amcl, catkin, move-base, stage-ros, teb-local-planner }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-teb-local-planner-tutorials";
|
|
|
|
version = "0.2.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/rst-tu-dortmund/teb_local_planner_tutorials-release/archive/release/melodic/teb_local_planner_tutorials/0.2.3-0.tar.gz;
|
|
|
|
sha256 = "0a565d87f210b89666efd8a62608439a79462561b64a5fa731756ec5af290b37";
|
|
|
|
};
|
|
|
|
|
2019-05-05 02:02:52 -04:00
|
|
|
propagatedBuildInputs = [ map-server amcl move-base stage-ros teb-local-planner ];
|
2019-03-21 00:14:59 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The teb_local_planner_tutorials package'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|