2020-05-23 15:15:06 -04:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-12-11 13:16:21 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, controller-interface, hardware-interface, realtime-tools, roscpp, std-msgs }:
|
2020-05-23 15:15:06 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-forward-command-controller";
|
2022-11-04 13:38:03 +00:00
|
|
|
version = "0.21.0-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-11-04 13:38:03 +00:00
|
|
|
url = "https://github.com/ros-gbp/ros_controllers-release/archive/release/noetic/forward_command_controller/0.21.0-1.tar.gz";
|
|
|
|
name = "0.21.0-1.tar.gz";
|
|
|
|
sha256 = "316d39e6cd77b1339a38c0f434903f991a6c08c5a56ba757785518de041605a6";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2020-12-11 13:16:21 +00:00
|
|
|
propagatedBuildInputs = [ controller-interface hardware-interface realtime-tools roscpp std-msgs ];
|
2020-05-23 15:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''forward_command_controller'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|