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