2020-12-11 13:16:21 +00:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2020-12-11 13:16:21 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-cpplint, pluginlib, rclcpp, rclcpp-action, robot-controllers-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-robot-controllers-interface";
|
|
|
|
version = "0.8.1-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/fetchrobotics-gbp/robot_controllers-ros2-release/archive/release/foxy/robot_controllers_interface/0.8.1-1.tar.gz";
|
|
|
|
name = "0.8.1-1.tar.gz";
|
|
|
|
sha256 = "c34090c04dcef35df231de376dc095fb722460236635f1b9f2a9e3b6978667cc";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-cmake-cpplint ];
|
|
|
|
propagatedBuildInputs = [ pluginlib rclcpp rclcpp-action robot-controllers-msgs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Generic framework for robot controls.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|