2022-12-09 19:20:15 -05:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, hardware-interface, rclcpp-lifecycle, sensor-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-controller-interface";
|
2023-12-22 13:30:27 +00:00
|
|
|
version = "4.2.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-12-22 13:30:27 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/controller_interface/4.2.0-1.tar.gz";
|
|
|
|
name = "4.2.0-1.tar.gz";
|
|
|
|
sha256 = "14c47ce10f06d408ce444e95dae69aa8a2e70d022304d1deb4c6ee188fc4362f";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2023-05-02 16:50:22 -04:00
|
|
|
buildInputs = [ ament-cmake sensor-msgs ];
|
2022-12-09 19:20:15 -05:00
|
|
|
checkInputs = [ ament-cmake-gmock ];
|
2023-05-02 16:50:22 -04:00
|
|
|
propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle ];
|
2022-12-09 19:20:15 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Description of controller_interface'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|