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

27 lines
1.5 KiB
Nix
Raw Normal View History

# 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, behaviortree-cpp, eigen, eigen3-cmake-module, lifecycle-msgs, plansys2-core, plansys2-domain-expert, plansys2-msgs, plansys2-pddl-parser, plansys2-planner, plansys2-problem-expert, pluginlib, popf, rclcpp, rclcpp-action, rclcpp-cascade-lifecycle, rclcpp-lifecycle, std-msgs, std-srvs }:
buildRosPackage {
pname = "ros-jazzy-plansys2-executor";
version = "2.0.15-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_planning_system-release/archive/release/jazzy/plansys2_executor/2.0.15-1.tar.gz";
name = "2.0.15-1.tar.gz";
sha256 = "7fd146dc186a1e4f526a988639c3a7bbc70dd8443544dbec6e2099dbf4ad7122";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake eigen eigen3-cmake-module ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-index-cpp behaviortree-cpp lifecycle-msgs plansys2-core plansys2-domain-expert plansys2-msgs plansys2-pddl-parser plansys2-planner plansys2-problem-expert pluginlib popf rclcpp rclcpp-action rclcpp-cascade-lifecycle rclcpp-lifecycle std-msgs std-srvs ];
nativeBuildInputs = [ ament-cmake eigen3-cmake-module ];
meta = {
description = "This package contains the Executor module for the ROS2 Planning System";
license = with lib.licenses; [ asl20 ];
};
}