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

26 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-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.4-r1";
src = fetchurl {
url = "https://github.com/IntelligentRoboticsLabs/ros2_planning_system-release/archive/release/eloquent/plansys2_terminal/0.0.4-1.tar.gz";
name = "0.0.4-1.tar.gz";
sha256 = "5943cc7c2dacfe26d5ef489bde82c9e0ea2204a22f43a0f8cc5f9c5ece217e04";
};
buildType = "ament_cmake";
checkInputs = [ 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 ];
};
}