# Copyright 2022 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-humble-controller-interface"; version = "2.13.0-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/humble/controller_interface/2.13.0-1.tar.gz"; name = "2.13.0-1.tar.gz"; sha256 = "5bf3082a97fb872360616e1600073fd3b7f5313ab15b8b2895eb8b5c8d79a9cc"; }; buildType = "ament_cmake"; checkInputs = [ ament-cmake-gmock ]; propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle sensor-msgs ]; nativeBuildInputs = [ ament-cmake ]; meta = { description = ''Description of controller_interface''; license = with lib.licenses; [ asl20 ]; }; }