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-lint-auto, ament-lint-common, plansys2-msgs, plansys2-pddl-parser, pluginlib, rclcpp, rclcpp-lifecycle }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-plansys2-core";
|
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_core/2.0.18-1.tar.gz";
|
|
|
|
name = "2.0.18-1.tar.gz";
|
|
|
|
sha256 = "1b979f4a33be3eef4b66dbced92a3306c2215f801675d8197d97ade701fa7af4";
|
2024-11-08 14:09:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ plansys2-msgs plansys2-pddl-parser pluginlib rclcpp rclcpp-lifecycle ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "This package contains the PDDL-based core for the ROS2 Planning System";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|