1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-20 17:10:51 +03:00
nix-ros-overlay/distros/eloquent/plansys2-executor/default.nix
2020-01-17 21:21:17 -05:00

25 lines
1.2 KiB
Nix

# Copyright 2020 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-domain-expert, plansys2-msgs, plansys2-pddl-parser, plansys2-planner, plansys2-problem-expert, popf, rclcpp, rclcpp-action, rclcpp-lifecycle }:
buildRosPackage {
pname = "ros-eloquent-plansys2-executor";
version = "0.0.5-r1";
src = fetchurl {
url = "https://github.com/IntelligentRoboticsLabs/ros2_planning_system-release/archive/release/eloquent/plansys2_executor/0.0.5-1.tar.gz";
name = "0.0.5-1.tar.gz";
sha256 = "6ccb343ef7a9cdebca528f3d93048ebfcac4d91d81d80df52b25fb0e337f41eb";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-index-cpp plansys2-domain-expert plansys2-msgs plansys2-pddl-parser plansys2-planner plansys2-problem-expert popf rclcpp rclcpp-action rclcpp-lifecycle ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''This package contains the Executor module for the ROS2 Planning System'';
license = with lib.licenses; [ asl20 ];
};
}