2024-05-10 13:12:06 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-10 13:12:06 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-10-04 13:25:33 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, ament-lint-common, controller-manager, imu-sensor-broadcaster, joint-state-broadcaster, ros2controlcli, topic-tools }:
|
2024-05-10 13:12:06 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-omni-base-controller-configuration";
|
2025-03-07 13:16:24 +00:00
|
|
|
version = "2.9.0-r1";
|
2024-05-10 13:12:06 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-03-07 13:16:24 +00:00
|
|
|
url = "https://github.com/pal-gbp/omni_base_robot-release/archive/release/humble/omni_base_controller_configuration/2.9.0-1.tar.gz";
|
|
|
|
name = "2.9.0-1.tar.gz";
|
|
|
|
sha256 = "99358a56ff5fbd8928ab24886d65d85191486f0d00bf943b25b1c097da0a23cc";
|
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-10-04 13:25:33 +00:00
|
|
|
propagatedBuildInputs = [ controller-manager imu-sensor-broadcaster joint-state-broadcaster ros2controlcli topic-tools ];
|
2024-05-10 13:12:06 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The omni_base_controller_configuration package";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|