1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-23 15:30:18 +03:00
nix-ros-overlay/distros/humble/pmb2-controller-configuration/default.nix

28 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2023 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 }:
buildRosPackage {
pname = "ros-humble-pmb2-controller-configuration";
version = "5.0.6-r1";
src = fetchurl {
url = "https://github.com/pal-gbp/pmb2_robot-gbp/archive/release/humble/pmb2_controller_configuration/5.0.6-1.tar.gz";
name = "5.0.6-1.tar.gz";
sha256 = "bf2e3984671de8e4408844b3f6de76f2e75a3355219c335cfdfa6cc52b0c07f2";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-auto ];
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 ];
};
}