mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 00:20:36 +03:00
27 lines
1.3 KiB
Nix
27 lines
1.3 KiB
Nix
![]() |
|
||
|
# Copyright 2023 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-cmake-python, ament-index-cpp, backward-ros, controller-interface, controller-manager-msgs, diagnostic-updater, hardware-interface, launch, launch-ros, pluginlib, rclcpp, rcpputils, realtime-tools, ros2-control-test-assets, ros2param, ros2run }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-iron-controller-manager";
|
||
|
version = "3.12.1-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/iron/controller_manager/3.12.1-2.tar.gz";
|
||
|
name = "3.12.1-2.tar.gz";
|
||
|
sha256 = "131b1c5f38d1a9b8fa89aa0614bcb48556947557f512134e27e4a9413dad12eb";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake ament-cmake-python ];
|
||
|
checkInputs = [ ament-cmake-gmock ros2-control-test-assets ];
|
||
|
propagatedBuildInputs = [ ament-index-cpp backward-ros controller-interface controller-manager-msgs diagnostic-updater hardware-interface launch launch-ros pluginlib rclcpp rcpputils realtime-tools ros2-control-test-assets ros2param ros2run ];
|
||
|
nativeBuildInputs = [ ament-cmake ament-cmake-python ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Description of controller_manager'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|