mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-09 03:44:40 +03:00
24 lines
1,014 B
Nix
24 lines
1,014 B
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";
|
||
|
};
|
||
|
|
||
|
checkInputs = [ controller-manager rosgraph-msgs rostest std-srvs xacro ];
|
||
|
propagatedBuildInputs = [ nav-msgs urdf controller-interface dynamic-reconfigure realtime-tools tf ];
|
||
|
nativeBuildInputs = [ nav-msgs urdf controller-interface dynamic-reconfigure realtime-tools catkin tf ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Controller for a differential drive mobile base.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|