1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/noetic/diff-drive-controller/default.nix

27 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, catkin, control-msgs, controller-interface, controller-manager, dynamic-reconfigure, geometry-msgs, hardware-interface, nav-msgs, pluginlib, realtime-tools, rosgraph-msgs, rostest, rostopic, std-srvs, tf, urdf, xacro }:
buildRosPackage {
pname = "ros-noetic-diff-drive-controller";
version = "0.21.0-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/ros_controllers-release/archive/release/noetic/diff_drive_controller/0.21.0-1.tar.gz";
name = "0.21.0-1.tar.gz";
sha256 = "40464044b17732a609ab6fec86b178c5dbddb662c69425f148c70fddd6688e1e";
};
buildType = "catkin";
buildInputs = [ catkin ];
checkInputs = [ controller-manager rosgraph-msgs rostest rostopic std-srvs xacro ];
propagatedBuildInputs = [ boost control-msgs controller-interface dynamic-reconfigure geometry-msgs hardware-interface nav-msgs pluginlib realtime-tools tf urdf ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Controller for a differential drive mobile base.'';
license = with lib.licenses; [ bsdOriginal ];
};
}