2022-11-04 13:38:03 +00:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-11-04 13:38:03 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, ament-lint-common, controller-manager, diff-drive-controller, joint-state-broadcaster }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-pmb2-controller-configuration";
|
2023-07-14 13:38:16 +00:00
|
|
|
version = "5.0.7-r1";
|
2022-11-04 13:38:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-14 13:38:16 +00:00
|
|
|
url = "https://github.com/pal-gbp/pmb2_robot-gbp/archive/release/humble/pmb2_controller_configuration/5.0.7-1.tar.gz";
|
|
|
|
name = "5.0.7-1.tar.gz";
|
|
|
|
sha256 = "98fd284a3af3ae810e66f85ab6cbed41f7e9a8de9b1b04765b13ca7420f38fb8";
|
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 ];
|
|
|
|
propagatedBuildInputs = [ controller-manager diff-drive-controller joint-state-broadcaster ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Launch files and scripts needed to configure
|
|
|
|
the controllers of the PMB2 robot.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|