mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
25 lines
882 B
Nix
25 lines
882 B
Nix
|
|
# 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.4-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/ros_control-release/archive/release/kinetic/controller_manager/0.13.4-1.tar.gz";
|
|
name = "0.13.4-1.tar.gz";
|
|
sha256 = "e2e4d37d8f4b682b825caca7fe740e8991e9a7d1db3d2103235ab04f19946d75";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|