2020-07-03 12:59:50 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-07-03 12:59:50 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-08-24 18:45:07 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, angles, nav-2d-msgs, nav-2d-utils, nav2-common, nav2-core, nav2-msgs, nav2-util, pluginlib, rclcpp, rclcpp-action, std-msgs }:
|
2020-07-03 12:59:50 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-nav2-controller";
|
2021-04-09 14:28:48 -04:00
|
|
|
version = "0.4.7-r1";
|
2020-07-03 12:59:50 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-09 14:28:48 -04:00
|
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/foxy/nav2_controller/0.4.7-1.tar.gz";
|
|
|
|
name = "0.4.7-1.tar.gz";
|
|
|
|
sha256 = "9e22c78719dbd52bd3a3db096c827a3e2a2510b43e0a50581e2fb04e80921c06";
|
2020-07-03 12:59:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ nav2-common ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2020-08-24 18:45:07 -04:00
|
|
|
propagatedBuildInputs = [ angles nav-2d-msgs nav-2d-utils nav2-core nav2-msgs nav2-util pluginlib rclcpp rclcpp-action std-msgs ];
|
2020-07-03 12:59:50 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Controller action interface'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|