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-03-17 13:53:56 +00:00
|
|
|
version = "3.9.0-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-03-17 13:53:56 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/controller_interface/3.9.0-2.tar.gz";
|
|
|
|
name = "3.9.0-2.tar.gz";
|
|
|
|
sha256 = "8b46bd1bf2e0a6522680ea271384f9c9efcb4bee473d5505b653310cba811140";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2023-03-17 13:53:56 +00:00
|
|
|
buildInputs = [ ament-cmake hardware-interface rclcpp-lifecycle sensor-msgs ];
|
2022-12-09 19:20:15 -05:00
|
|
|
checkInputs = [ ament-cmake-gmock ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Description of controller_interface'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|