mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
901 B
Nix
24 lines
901 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, hardware-interface, pluginlib, catkin, rostest, controller-interface, controller-manager-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-controller-manager";
|
|
version = "0.13.3";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/ros_control-release/archive/release/kinetic/controller_manager/0.13.3-0.tar.gz;
|
|
sha256 = "03176b3abcec6e00f0e13e6e8b62b2b2291f3f5773510249958bb0f0ca4778ac";
|
|
};
|
|
|
|
buildInputs = [ hardware-interface controller-interface controller-manager-msgs pluginlib ];
|
|
checkInputs = [ rostest ];
|
|
propagatedBuildInputs = [ hardware-interface controller-interface controller-manager-msgs pluginlib ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''The controller manager.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|