2024-11-08 14:09:31 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-11-08 14:09:31 +00:00
|
|
|
# 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, plansys2-msgs, plansys2-problem-expert, qt-gui-cpp, qt5, rclcpp, rclcpp-lifecycle, rqt-gui, rqt-gui-cpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-plansys2-tools";
|
2025-01-03 13:42:37 +00:00
|
|
|
version = "2.0.18-r1";
|
2024-11-08 14:09:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-01-03 13:42:37 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_planning_system-release/archive/release/jazzy/plansys2_tools/2.0.18-1.tar.gz";
|
|
|
|
name = "2.0.18-1.tar.gz";
|
|
|
|
sha256 = "dc64bd6f0ddc6cb5384a928911249ceef04c6918e844847a6578f67f6d68337a";
|
2024-11-08 14:09:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake qt5.qtbase ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-index-cpp ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ plansys2-msgs plansys2-problem-expert qt-gui-cpp rclcpp rclcpp-lifecycle rqt-gui rqt-gui-cpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A set of tools for monitoring ROS2 Planning System";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|