2019-09-09 14:55:58 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, ament-lint-auto, ament-lint-common, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs, trajectory-msgs }:
|
2019-09-09 14:55:58 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-control-msgs";
|
|
|
|
version = "2.2.0-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros-gbp/control_msgs-release/archive/release/dashing/control_msgs/2.2.0-1.tar.gz";
|
|
|
|
name = "2.2.0-1.tar.gz";
|
|
|
|
sha256 = "1256974d84928926f3077e5231dd0b66eb8cabdc33e1ec98b36782849eb77063";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2019-12-09 23:36:28 -05:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ action-msgs builtin-interfaces geometry-msgs rosidl-default-runtime std-msgs trajectory-msgs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
2019-09-09 14:55:58 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''control_msgs contains base messages and actions useful for
|
|
|
|
controlling robots. It provides representations for controller
|
|
|
|
setpoints and joint and cartesian trajectories.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|