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/eloquent/plansys2-terminal/default.nix
2020-03-27 18:49:02 -04: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-executor, plansys2-msgs, plansys2-planner, plansys2-problem-expert, rclcpp, rclcpp-action, rclcpp-lifecycle, readline }:
buildRosPackage {
pname = "ros-eloquent-plansys2-terminal";
version = "0.0.7-r1";
src = fetchurl {
url = "https://github.com/IntelligentRoboticsLabs/ros2_planning_system-release/archive/release/eloquent/plansys2_terminal/0.0.7-1.tar.gz";
name = "0.0.7-1.tar.gz";
sha256 = "5e2a94cba08f40d14e7ac09e3a7f47fd87742b347a3f784af42d0fd77b68535e";
};
buildType = "ament_cmake";
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 ];
};
}