# Copyright 2021 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, boost, catkin, cpp-common, message-generation, message-runtime, roscpp, roscpp-serialization, roslib, rospy, rosservice, rostest, std-msgs }: buildRosPackage { pname = "ros-melodic-dynamic-reconfigure"; version = "1.6.3-r1"; src = fetchurl { url = "https://github.com/ros-gbp/dynamic_reconfigure-release/archive/release/melodic/dynamic_reconfigure/1.6.3-1.tar.gz"; name = "1.6.3-1.tar.gz"; sha256 = "8113045db4c6471f5cb6bdd00ec27b5c5ffb2572247377f106a0f2e9a0b62fc2"; }; buildType = "catkin"; buildInputs = [ cpp-common message-generation roscpp-serialization rostest ]; propagatedBuildInputs = [ boost message-runtime roscpp roslib rospy rosservice std-msgs ]; nativeBuildInputs = [ catkin ]; meta = { description = ''The dynamic_reconfigure package provides a means to update parameters at runtime without having to restart the node.''; license = with lib.licenses; [ bsdOriginal ]; }; }