# 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-rolling-controller-interface"; version = "3.16.0-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/controller_interface/3.16.0-1.tar.gz"; name = "3.16.0-1.tar.gz"; sha256 = "61d89a0ee1721f8f770a238a88c3c28e49dfb36c918368a3c21fba28c28a1a30"; }; 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 ]; }; }