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

25 lines
1 KiB
Nix

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