2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04: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-iron-control-msgs";
|
2024-07-26 13:34:25 +00:00
|
|
|
version = "5.2.0-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-07-26 13:34:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/control_msgs-release/archive/release/iron/control_msgs/5.2.0-1.tar.gz";
|
|
|
|
name = "5.2.0-1.tar.gz";
|
|
|
|
sha256 = "cb1f1494bbefe9d6bf6331fe6eba9fcaccd4b7fa27e92b91c160cbd98db89430";
|
2023-06-19 17:15:23 -04: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 = {
|
2024-03-23 14:09:26 +00:00
|
|
|
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-03-23 14:09:26 +00:00
|
|
|
setpoints and joint and cartesian trajectories.";
|
2024-04-12 13:51:24 +00:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
}
|