1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-20 22:28:39 +03:00
nix-ros-overlay/distros/humble/pmb2-controller-configuration/default.nix

28 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# 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, launch, launch-pal }:
buildRosPackage {
pname = "ros-humble-pmb2-controller-configuration";
version = "5.0.16-r1";
src = fetchurl {
url = "https://github.com/pal-gbp/pmb2_robot-gbp/archive/release/humble/pmb2_controller_configuration/5.0.16-1.tar.gz";
name = "5.0.16-1.tar.gz";
sha256 = "011c6cbbfec2462c814a9bb454bffdd655553e3f693abc3c46dc899d5d91943f";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-auto ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ controller-manager diff-drive-controller joint-state-broadcaster launch launch-pal ];
nativeBuildInputs = [ ament-cmake-auto ];
meta = {
description = ''Launch files and scripts needed to configure
the controllers of the PMB2 robot.'';
license = with lib.licenses; [ asl20 ];
};
}