2024-11-08 14:09:31 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-cpp, ament-lint-auto, ament-lint-common, lifecycle-msgs, plansys2-domain-expert, plansys2-executor, plansys2-msgs, plansys2-pddl-parser, plansys2-planner, plansys2-problem-expert, rclcpp, rclcpp-action, rclcpp-lifecycle, readline }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-plansys2-terminal";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "2.0.15-r1";
|
2024-11-08 14:09:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_planning_system-release/archive/release/jazzy/plansys2_terminal/2.0.15-1.tar.gz";
|
|
|
|
name = "2.0.15-1.tar.gz";
|
|
|
|
sha256 = "815a37a1dacabe1c52317c7954f80cb5a357eda8e51cc30b72b30dedac0b4fa2";
|
2024-11-08 14:09:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-index-cpp ament-lint-auto ament-lint-common lifecycle-msgs ];
|
|
|
|
propagatedBuildInputs = [ plansys2-domain-expert plansys2-executor plansys2-msgs plansys2-pddl-parser 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 ];
|
|
|
|
};
|
|
|
|
}
|