1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/controller-manager/default.nix
2019-12-09 23:36:28 -05:00

25 lines
879 B
Nix

# Copyright 2019 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-melodic-controller-manager";
version = "0.15.1";
src = fetchurl {
url = "https://github.com/ros-gbp/ros_control-release/archive/release/melodic/controller_manager/0.15.1-0.tar.gz";
name = "0.15.1-0.tar.gz";
sha256 = "23c70277cc132ceacb08eaea3ce9ff79d956458f817b9ab72bcf2713b12e7824";
};
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 ];
};
}