1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-11 21:06:23 +03:00
nix-ros-overlay/distros/rolling/om-spring-actuator-controller/default.nix

27 lines
1.3 KiB
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, angles, backward-ros, control-msgs, control-toolbox, controller-interface, controller-manager, generate-parameter-library, hardware-interface, hardware-interface-testing, pluginlib, rclcpp, rclcpp-lifecycle, realtime-tools, ros2-control-test-assets, rsl, tl-expected, urdf }:
buildRosPackage {
pname = "ros-rolling-om-spring-actuator-controller";
version = "3.2.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/open_manipulator-release/archive/release/rolling/om_spring_actuator_controller/3.2.1-1.tar.gz";
name = "3.2.1-1.tar.gz";
sha256 = "9ec55e5dbfca9fdd9a2ac0db553a86f78006c962a9bf92ec9b7bac40ff9194d1";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gmock controller-manager hardware-interface-testing ros2-control-test-assets ];
propagatedBuildInputs = [ angles backward-ros control-msgs control-toolbox controller-interface generate-parameter-library hardware-interface pluginlib rclcpp rclcpp-lifecycle realtime-tools rsl tl-expected urdf ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Spring Actuator Controller ROS 2 package.";
license = with lib.licenses; [ asl20 ];
};
}