2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-04-05 13:51:29 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gen-version-h, ament-cmake-gmock, hardware-interface, rclcpp-lifecycle, sensor-msgs }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-controller-interface";
|
2024-08-30 13:28:23 +00:00
|
|
|
version = "4.16.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-30 13:28:23 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/controller_interface/4.16.1-1.tar.gz";
|
|
|
|
name = "4.16.1-1.tar.gz";
|
|
|
|
sha256 = "c649e91cf51634cdf15b29db062bc80f5cc2a5fc9b3d51d6dd8db01c702c628f";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2024-04-05 13:51:29 +00:00
|
|
|
buildInputs = [ ament-cmake ament-cmake-gen-version-h 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 ];
|
2024-04-05 13:51:29 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-gen-version-h ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Description of controller_interface";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|