1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 00:20:36 +03:00
nix-ros-overlay/distros/iron/controller-interface/default.nix

27 lines
903 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, hardware-interface, rclcpp-lifecycle, sensor-msgs }:
buildRosPackage {
pname = "ros-iron-controller-interface";
version = "3.23.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/iron/controller_interface/3.23.0-1.tar.gz";
name = "3.23.0-1.tar.gz";
sha256 = "209865cdf3398db8e87141c5bdd014e1aeb3724faea4eb9b02f834c3c84e9af2";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake sensor-msgs ];
checkInputs = [ ament-cmake-gmock ];
propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Description of controller_interface'';
license = with lib.licenses; [ asl20 ];
};
}