2020-01-10 12:36:13 +00:00
|
|
|
|
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, lifecycle-msgs, rclcpp, rclcpp-lifecycle }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-plansys2-lifecycle-manager";
|
2020-03-27 18:49:02 -04:00
|
|
|
version = "0.0.7-r1";
|
2020-01-10 12:36:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-27 18:49:02 -04:00
|
|
|
url = "https://github.com/IntelligentRoboticsLabs/ros2_planning_system-release/archive/release/eloquent/plansys2_lifecycle_manager/0.0.7-1.tar.gz";
|
|
|
|
name = "0.0.7-1.tar.gz";
|
|
|
|
sha256 = "049ca3ac2c7308bb352b28c3b31413ea39b931050bdfa71fa3c65efab86aa16c";
|
2020-01-10 12:36:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ lifecycle-msgs rclcpp rclcpp-lifecycle ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A controller/manager for the lifecycle nodes of the ROS2 Planning System'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|