mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-14 03:28:39 +03:00
26 lines
907 B
Nix
26 lines
907 B
Nix
|
|
# 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-humble-controller-interface";
|
|
version = "2.37.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/humble/controller_interface/2.37.0-1.tar.gz";
|
|
name = "2.37.0-1.tar.gz";
|
|
sha256 = "2b3e7771596ffc752a1a1be35e4f3cf6408b8c0e99b04de15d873e0183fa6f58";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|