# Copyright 2019 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, catkin, roscpp, rostest, rosunit }: buildRosPackage { pname = "ros-kinetic-hardware-interface"; version = "0.13.3"; src = fetchurl { url = "https://github.com/ros-gbp/ros_control-release/archive/release/kinetic/hardware_interface/0.13.3-0.tar.gz"; name = "0.13.3-0.tar.gz"; sha256 = "87d812bfa3d2a03df47ff2cb240d6b8cfeb66511d622dd71453a76185e1b5641"; }; buildType = "catkin"; checkInputs = [ rostest rosunit ]; propagatedBuildInputs = [ roscpp ]; nativeBuildInputs = [ catkin ]; meta = { description = ''Hardware Interface base class.''; license = with lib.licenses; [ bsdOriginal ]; }; }