1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-19 21:58:39 +03:00
nix-ros-overlay/distros/rolling/controller-interface/default.nix

27 lines
906 B
Nix
Raw Normal View History

# Copyright 2023 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-rolling-controller-interface";
version = "3.7.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/controller_interface/3.7.0-1.tar.gz";
name = "3.7.0-1.tar.gz";
sha256 = "5bf1528fef53762d6dc815f89bffadbaa0f8499f7216d4134e77d9bd91e93d50";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gmock ];
propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle sensor-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Description of controller_interface'';
license = with lib.licenses; [ asl20 ];
};
}