2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-11-08 14:09:31 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gen-version-h, ament-cmake-gmock, geometry-msgs, hardware-interface, rclcpp-lifecycle, realtime-tools, sensor-msgs }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-controller-interface";
|
2025-02-14 13:45:14 +00:00
|
|
|
version = "4.26.0-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-02-14 13:45:14 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/jazzy/controller_interface/4.26.0-1.tar.gz";
|
|
|
|
name = "4.26.0-1.tar.gz";
|
|
|
|
sha256 = "2689a23dd9235888e1fcd1900cacac4f4ff9d8a735226a263b1c51a2ddd47132";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ament-cmake-gen-version-h sensor-msgs ];
|
2024-11-08 14:09:31 +00:00
|
|
|
checkInputs = [ ament-cmake-gmock geometry-msgs ];
|
|
|
|
propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle realtime-tools ];
|
2024-05-24 14:00:52 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-gen-version-h ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Description of controller_interface";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|