1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 08:31:07 +03:00
nix-ros-overlay/melodic/moveit-controller-manager-example/default.nix

24 lines
804 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, pluginlib, catkin, moveit-core, roscpp }:
buildRosPackage {
pname = "ros-melodic-moveit-controller-manager-example";
version = "1.0.1";
src = fetchurl {
url = https://github.com/ros-gbp/moveit-release/archive/release/melodic/moveit_controller_manager_example/1.0.1-0.tar.gz;
sha256 = "7594ace173bf4c1d41806d16686f371784e37f2169aa655548213b4b44f849a1";
};
buildInputs = [ pluginlib roscpp moveit-core ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ pluginlib roscpp moveit-core ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''An example controller manager plugin for MoveIt. This is not functional code.'';
#license = lib.licenses.BSD;
};
}