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-05-02 21:09:50 -04:00
|
|
|
version = "5.0.4-r1";
|
2022-11-04 13:38:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 21:09:50 -04:00
|
|
|
url = "https://github.com/pal-gbp/pmb2_robot-gbp/archive/release/humble/pmb2_controller_configuration/5.0.4-1.tar.gz";
|
|
|
|
name = "5.0.4-1.tar.gz";
|
|
|
|
sha256 = "cc14f0313652266b30b4054b8381c57173ec36f40b10e5e71815f780688dc810";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|