2023-01-27 13:23:44 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-01-27 13:23:44 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, builtin-interfaces, lifecycle-msgs, rclcpp, rosidl-default-generators }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-cascade-lifecycle-msgs";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "1.0.3-r5";
|
2023-01-27 13:23:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/cascade_lifecycle-release/archive/release/rolling/cascade_lifecycle_msgs/1.0.3-5.tar.gz";
|
|
|
|
name = "1.0.3-5.tar.gz";
|
|
|
|
sha256 = "71be824039c263e5c4e74acadcf5974958a65e857898b222405395c3d87ef74e";
|
2023-01-27 13:23:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
propagatedBuildInputs = [ builtin-interfaces lifecycle-msgs rclcpp rosidl-default-generators ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Messages for rclcpp_cascade_lifecycle package";
|
2023-01-27 13:23:44 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|