2024-05-10 13:12:06 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-07-26 13:34:25 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, ament-lint-common, controller-manager, imu-sensor-broadcaster, joint-state-broadcaster, ros2controlcli }:
|
2024-05-10 13:12:06 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-omni-base-controller-configuration";
|
2024-08-16 13:54:37 +00:00
|
|
|
version = "2.2.0-r1";
|
2024-05-10 13:12:06 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-16 13:54:37 +00:00
|
|
|
url = "https://github.com/pal-gbp/omni_base_robot-release/archive/release/humble/omni_base_controller_configuration/2.2.0-1.tar.gz";
|
|
|
|
name = "2.2.0-1.tar.gz";
|
|
|
|
sha256 = "16150eace15393c22df946a17750b8f1772441768d949914c2937840b42ab876";
|
2024-05-10 13:12:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-auto ];
|
2024-07-26 13:34:25 +00:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2024-05-10 13:12:06 +00:00
|
|
|
propagatedBuildInputs = [ controller-manager imu-sensor-broadcaster joint-state-broadcaster ros2controlcli ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The omni_base_controller_configuration package";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|