2021-07-16 13:05:44 +00:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2021-07-16 13:05:44 +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, imu-sensor-broadcaster, joint-state-controller }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-pmb2-controller-configuration";
|
2021-10-22 13:28:24 +00:00
|
|
|
version = "4.0.4-r1";
|
2021-07-16 13:05:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-10-22 13:28:24 +00:00
|
|
|
url = "https://github.com/pal-gbp/pmb2_robot-gbp/archive/release/foxy/pmb2_controller_configuration/4.0.4-1.tar.gz";
|
|
|
|
name = "4.0.4-1.tar.gz";
|
|
|
|
sha256 = "c16a5f264c729b2aee71f9ce04097ca84915cbf0744e18c7f94982f286141531";
|
2021-07-16 13:05:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ controller-manager diff-drive-controller imu-sensor-broadcaster joint-state-controller ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Launch files and scripts needed to configure
|
|
|
|
the controllers of the PMB2 robot.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|