1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/jazzy/plansys2-tools/default.nix

26 lines
1.1 KiB
Nix

# Copyright 2025 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, plansys2-msgs, plansys2-problem-expert, qt-gui-cpp, qt5, rclcpp, rclcpp-lifecycle, rqt-gui, rqt-gui-cpp }:
buildRosPackage {
pname = "ros-jazzy-plansys2-tools";
version = "2.0.18-r1";
src = fetchurl {
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";
};
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 ];
};
}