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
|
|
|
|
|
2023-12-22 13:30:27 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, ament-lint-common, controller-manager, diff-drive-controller, joint-state-broadcaster, launch, launch-pal }:
|
2022-11-04 13:38:03 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-pmb2-controller-configuration";
|
2023-12-22 13:30:27 +00:00
|
|
|
version = "5.0.15-r1";
|
2022-11-04 13:38:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-12-22 13:30:27 +00:00
|
|
|
url = "https://github.com/pal-gbp/pmb2_robot-gbp/archive/release/humble/pmb2_controller_configuration/5.0.15-1.tar.gz";
|
|
|
|
name = "5.0.15-1.tar.gz";
|
|
|
|
sha256 = "0592eebc768c4bb9017ed1f4e7b313c077a6190cea7f8b33a910d8c6ecddcdbc";
|
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 ];
|
2023-12-22 13:30:27 +00:00
|
|
|
propagatedBuildInputs = [ controller-manager diff-drive-controller joint-state-broadcaster launch launch-pal ];
|
2022-11-04 13:38:03 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Launch files and scripts needed to configure
|
|
|
|
the controllers of the PMB2 robot.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|