mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
26 lines
930 B
Nix
26 lines
930 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, geometry-msgs, hardware-interface, rclcpp-lifecycle, sensor-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-iron-controller-interface";
|
|
version = "3.30.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/iron/controller_interface/3.30.0-1.tar.gz";
|
|
name = "3.30.0-1.tar.gz";
|
|
sha256 = "4ee809d6d1cf101502dee77df81bd68c4e64f76f46005e5fe5339c11e94e3306";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake sensor-msgs ];
|
|
checkInputs = [ ament-cmake-gmock geometry-msgs ];
|
|
propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Description of controller_interface";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|