1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-17 15:40:17 +03:00
nix-ros-overlay/distros/humble/controller-interface/default.nix

27 lines
946 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, geometry-msgs, hardware-interface, rclcpp-lifecycle, sensor-msgs }:
buildRosPackage {
pname = "ros-humble-controller-interface";
version = "2.44.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/humble/controller_interface/2.44.0-1.tar.gz";
name = "2.44.0-1.tar.gz";
sha256 = "acda35a609d731feb9e91afc29307912e11c3f5d5ae6d38df3af8ac1d7be32d6";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gmock geometry-msgs sensor-msgs ];
propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle sensor-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Description of controller_interface";
license = with lib.licenses; [ asl20 ];
};
}