2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-pytest, ament-cmake, ament-lint-common, launch-testing, nav2-msgs, ament-cmake-gtest, nav2-util, launch, nav2-common, nav-2d-utils, rclcpp-action, rclcpp, std-msgs, ament-lint-auto, dwb-core, nav-2d-msgs }:
|
2019-09-06 12:16:03 -04:00
|
|
|
buildRosPackage rec {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-dwb-controller";
|
|
|
|
version = "0.2.3-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:16:03 -04:00
|
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/dashing/dwb_controller/0.2.3-1.tar.gz";
|
|
|
|
name = "0.2.3-1.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "0cace61e8d81e18e4e22d4ac292ad67509bc759e4f653c21bc280eaa36fa9738";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ nav2-msgs nav2-util nav2-common nav-2d-utils rclcpp-action rclcpp std-msgs dwb-core nav-2d-msgs ];
|
|
|
|
checkInputs = [ ament-cmake-pytest ament-lint-common launch-testing ament-cmake-gtest launch ament-lint-auto ];
|
|
|
|
propagatedBuildInputs = [ nav2-msgs nav2-util nav-2d-utils rclcpp-action rclcpp std-msgs dwb-core nav-2d-msgs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''TODO'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|