2023-01-27 13:23:44 +00:00
|
|
|
|
|
|
|
# Copyright 2023 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, cascade-lifecycle-msgs, lifecycle-msgs, rclcpp, rclcpp-lifecycle }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rclcpp-cascade-lifecycle";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "1.0.3-r4";
|
2023-01-27 13:23:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/ros2-gbp/cascade_lifecycle-release/archive/release/rolling/rclcpp_cascade_lifecycle/1.0.3-4.tar.gz";
|
|
|
|
name = "1.0.3-4.tar.gz";
|
|
|
|
sha256 = "98b2d1f8d7ceae7689a8cbc386293be0bd1e8495c1863394a5d1f305e4dd8ed7";
|
2023-01-27 13:23:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ cascade-lifecycle-msgs lifecycle-msgs rclcpp rclcpp-lifecycle ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Provides a mechanism to make trees of lifecycle nodes to propagate state changes'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|