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-10-11 13:52:59 +00:00
|
|
|
version = "4.18.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-10-11 13:52:59 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/controller_interface/4.18.0-1.tar.gz";
|
|
|
|
name = "4.18.0-1.tar.gz";
|
|
|
|
sha256 = "8e45e03a3b51344f52c47228168626e82548e9a60910c887838c811cf525091b";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|