2020-01-10 12:36:13 +00:00
|
|
|
|
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-01-17 12:40:05 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-cpp, ament-lint-auto, ament-lint-common, plansys2-domain-expert, plansys2-executor, plansys2-msgs, plansys2-planner, plansys2-problem-expert, rclcpp, rclcpp-action, rclcpp-lifecycle, readline }:
|
2020-01-10 12:36:13 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-plansys2-terminal";
|
2020-03-27 18:49:02 -04:00
|
|
|
version = "0.0.7-r1";
|
2020-01-10 12:36:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-27 18:49:02 -04:00
|
|
|
url = "https://github.com/IntelligentRoboticsLabs/ros2_planning_system-release/archive/release/eloquent/plansys2_terminal/0.0.7-1.tar.gz";
|
|
|
|
name = "0.0.7-1.tar.gz";
|
|
|
|
sha256 = "5e2a94cba08f40d14e7ac09e3a7f47fd87742b347a3f784af42d0fd77b68535e";
|
2020-01-10 12:36:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2020-01-17 12:40:05 +00:00
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
2020-01-10 12:36:13 +00:00
|
|
|
propagatedBuildInputs = [ ament-index-cpp plansys2-domain-expert plansys2-executor plansys2-msgs plansys2-planner plansys2-problem-expert rclcpp rclcpp-action rclcpp-lifecycle readline ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A terminal tool for monitor and manage the ROS2 Planning System'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|