2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, ament-lint-auto, ament-lint-common, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, sensor-msgs, std-msgs, trajectory-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-control-msgs";
|
2024-11-22 13:28:00 +00:00
|
|
|
version = "5.3.0-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-22 13:28:00 +00:00
|
|
|
url = "https://github.com/ros2-gbp/control_msgs-release/archive/release/jazzy/control_msgs/5.3.0-1.tar.gz";
|
|
|
|
name = "5.3.0-1.tar.gz";
|
|
|
|
sha256 = "b43b883f65f9ca58bc13976248446dede87758a973a8482ce846ac7a5ac21250";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ action-msgs builtin-interfaces geometry-msgs rosidl-default-runtime sensor-msgs std-msgs trajectory-msgs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "control_msgs contains base messages and actions useful for
|
2024-07-26 13:34:25 +00:00
|
|
|
controlling robots. It provides representations for controller
|
2024-05-24 14:00:52 +00:00
|
|
|
setpoints and joint and cartesian trajectories.";
|
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|