mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 11:14:49 +03:00
24 lines
1 KiB
Nix
24 lines
1 KiB
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, controller-manager, std-srvs, realtime-tools, catkin, rosgraph-msgs, rostest, nav-msgs, urdf, controller-interface, dynamic-reconfigure, tf, xacro }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-diff-drive-controller";
|
|
version = "0.13.5";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/ros_controllers-release/archive/release/kinetic/diff_drive_controller/0.13.5-0.tar.gz;
|
|
sha256 = "ad89d6037ec24fd9d0b324832cb333a637182b98e49d3b5bca66baa5a74ddf0b";
|
|
};
|
|
|
|
buildInputs = [ nav-msgs urdf controller-interface dynamic-reconfigure realtime-tools tf ];
|
|
checkInputs = [ controller-manager rosgraph-msgs rostest std-srvs xacro ];
|
|
propagatedBuildInputs = [ nav-msgs urdf controller-interface dynamic-reconfigure realtime-tools tf ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Controller for a differential drive mobile base.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|