2022-11-04 13:38:03 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-11-04 13:38:03 +00:00
|
|
|
# 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, diff-drive-controller, imu-sensor-broadcaster, joint-state-broadcaster, launch, launch-pal, ros2controlcli }:
|
2022-11-04 13:38:03 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-pmb2-controller-configuration";
|
2024-11-15 13:25:01 +00:00
|
|
|
version = "5.4.0-r1";
|
2022-11-04 13:38:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-15 13:25:01 +00:00
|
|
|
url = "https://github.com/pal-gbp/pmb2_robot-gbp/archive/release/humble/pmb2_controller_configuration/5.4.0-1.tar.gz";
|
|
|
|
name = "5.4.0-1.tar.gz";
|
|
|
|
sha256 = "8cd319479e184c214be4b3566b670923fbfc2325363d31c2be64f21849b3e064";
|
2022-11-04 13:38:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake-auto ];
|
2022-11-04 13:38:03 +00:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2024-07-26 13:34:25 +00:00
|
|
|
propagatedBuildInputs = [ controller-manager diff-drive-controller imu-sensor-broadcaster joint-state-broadcaster launch launch-pal ros2controlcli ];
|
2022-11-04 13:38:03 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Launch files and scripts needed to configure
|
|
|
|
the controllers of the PMB2 robot.";
|
2022-11-04 13:38:03 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|