# Copyright 2021 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, catkin, hardware-interface, roscpp }: buildRosPackage { pname = "ros-melodic-controller-interface"; version = "0.18.4-r1"; src = fetchurl { url = "https://github.com/ros-gbp/ros_control-release/archive/release/melodic/controller_interface/0.18.4-1.tar.gz"; name = "0.18.4-1.tar.gz"; sha256 = "05014247fbb6cd7ddd66595f36e61f12e2609cdcb791c6a9a1cbce955632c162"; }; buildType = "catkin"; propagatedBuildInputs = [ hardware-interface roscpp ]; nativeBuildInputs = [ catkin ]; meta = { description = ''Interface base class for controllers.''; license = with lib.licenses; [ bsdOriginal ]; }; }