2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
|
|
# 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-iron-controller-interface";
|
2023-11-24 13:11:26 +00:00
|
|
|
version = "3.21.1-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-11-24 13:11:26 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/iron/controller_interface/3.21.1-1.tar.gz";
|
|
|
|
name = "3.21.1-1.tar.gz";
|
|
|
|
sha256 = "68f09fda61e7abc8d70cfc7e6d7c61e1fa173e84c81799e0ed4e71ece01e6769";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake sensor-msgs ];
|
|
|
|
checkInputs = [ ament-cmake-gmock ];
|
|
|
|
propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Description of controller_interface'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|