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, roscpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-hardware-interface";
|
2020-08-24 18:45:07 -04:00
|
|
|
version = "0.19.2-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-08-24 18:45:07 -04:00
|
|
|
url = "https://github.com/ros-gbp/ros_control-release/archive/release/noetic/hardware_interface/0.19.2-1.tar.gz";
|
|
|
|
name = "0.19.2-1.tar.gz";
|
|
|
|
sha256 = "64568b6093dd4df280a88906d95599fb4977e5a0b6bf9051ed6f1433bb316f75";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
|
|
|
propagatedBuildInputs = [ roscpp ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Hardware Interface base class.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|