2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2022-07-22 14:48:09 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, lifecycle-msgs, rosidl-default-generators, rosidl-default-runtime }:
|
2022-06-09 18:50:37 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-controller-manager-msgs";
|
2022-08-12 14:45:56 +00:00
|
|
|
version = "2.13.0-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-08-12 14:45:56 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/humble/controller_manager_msgs/2.13.0-1.tar.gz";
|
|
|
|
name = "2.13.0-1.tar.gz";
|
|
|
|
sha256 = "07d5c539275255c2e46dd0c80e892f68a329cf74d9c49e1148d938255824d97d";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-07-22 14:48:09 +00:00
|
|
|
checkInputs = [ ament-lint-common ];
|
2022-06-09 18:50:37 -04:00
|
|
|
propagatedBuildInputs = [ builtin-interfaces lifecycle-msgs rosidl-default-runtime ];
|
|
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Messages and services for the controller manager.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|