2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, hardware-interface, roscpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-controller-interface";
|
2020-10-23 13:30:31 +00:00
|
|
|
version = "0.19.3-r2";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-10-23 13:30:31 +00:00
|
|
|
url = "https://github.com/ros-gbp/ros_control-release/archive/release/noetic/controller_interface/0.19.3-2.tar.gz";
|
|
|
|
name = "0.19.3-2.tar.gz";
|
|
|
|
sha256 = "208e01236b171ac4ab6818ee6da01322743aed4e80f73073cb1a57adce084fff";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
|
|
|
propagatedBuildInputs = [ hardware-interface roscpp ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Interface base class for controllers.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|