2024-05-10 13:12:06 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# 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";
|
2024-11-08 14:09:31 +00:00
|
|
|
version = "2.4.1-r1";
|
2024-05-10 13:12:06 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-08 14:09:31 +00:00
|
|
|
url = "https://github.com/pal-gbp/omni_base_robot-release/archive/release/humble/omni_base_controller_configuration/2.4.1-1.tar.gz";
|
|
|
|
name = "2.4.1-1.tar.gz";
|
|
|
|
sha256 = "5c5a545bd1f39b4b63711531f0d08f0a566e85a2643b291b894870ab7a9cd688";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|