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/eloquent/plansys2-terminal/default.nix

27 lines
1.2 KiB
Nix
Raw Normal View History

# 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, boost, plansys2-domain-expert, plansys2-executor, plansys2-msgs, plansys2-planner, plansys2-problem-expert, rclcpp, rclcpp-action, rclcpp-lifecycle, readline }:
buildRosPackage {
pname = "ros-eloquent-plansys2-terminal";
version = "0.0.17-r1";
src = fetchurl {
url = "https://github.com/IntelligentRoboticsLabs/ros2_planning_system-release/archive/release/eloquent/plansys2_terminal/0.0.17-1.tar.gz";
name = "0.0.17-1.tar.gz";
sha256 = "01707745fcad66094a7fc584520951e5801c1dba5d1ef6d6286d7d670e27b73e";
};
buildType = "ament_cmake";
buildInputs = [ boost ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-index-cpp plansys2-domain-expert plansys2-executor plansys2-msgs plansys2-planner plansys2-problem-expert rclcpp rclcpp-action rclcpp-lifecycle readline ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''A terminal tool for monitor and manage the ROS2 Planning System'';
license = with lib.licenses; [ asl20 ];
};
}