1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-16 23:21:00 +03:00
nix-ros-overlay/kinetic/controller-manager/default.nix

26 lines
879 B
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, controller-interface, controller-manager-msgs, hardware-interface, pluginlib, rostest }:
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";
name = "0.13.3-0.tar.gz";
sha256 = "03176b3abcec6e00f0e13e6e8b62b2b2291f3f5773510249958bb0f0ca4778ac";
};
buildType = "catkin";
checkInputs = [ rostest ];
propagatedBuildInputs = [ controller-interface controller-manager-msgs hardware-interface pluginlib ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The controller manager.'';
license = with lib.licenses; [ bsdOriginal ];
};
}