1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 22:50:46 +03:00
nix-ros-overlay/melodic/diff-drive-controller/default.nix

27 lines
1.1 KiB
Nix
Raw Normal View History

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