2023-01-27 13:23:44 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 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-04-05 13:51:29 +00:00
|
|
|
version = "2.0.0-r1";
|
2023-01-27 13:23:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-04-05 13:51:29 +00:00
|
|
|
url = "https://github.com/ros2-gbp/cascade_lifecycle-release/archive/release/rolling/cascade_lifecycle_msgs/2.0.0-1.tar.gz";
|
|
|
|
name = "2.0.0-1.tar.gz";
|
|
|
|
sha256 = "2e19f7e5e09bc01f63be912cea6b0ec4af8dec67a7590b4492b5220e67ee4f7c";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|