mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
1 KiB
Nix
25 lines
1 KiB
Nix
|
|
# Copyright 2021 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.17.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/ros_controllers-release/archive/release/melodic/diff_drive_controller/0.17.2-1.tar.gz";
|
|
name = "0.17.2-1.tar.gz";
|
|
sha256 = "ffc17987a71bd6bee3e0224ff9f04d6fdffd5909cdf6e9cf4510902768929710";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|