2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, moveit-ros-planning, moveit-resources, moveit-ros-visualization, rosconsole, ogre1_9, xacro, libyamlcpp, srdfdom, catkin, urdf, qt5, rviz, moveit-core, roscpp, rosunit }:
|
2019-03-21 00:14:59 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-moveit-setup-assistant";
|
|
|
|
version = "1.0.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/ros-gbp/moveit-release/archive/release/melodic/moveit_setup_assistant/1.0.1-0.tar.gz;
|
|
|
|
sha256 = "e7aa9ebbf17b4f51a4cf38ba92f45430497c1da9cdddd0736706f2ef757d01ab";
|
|
|
|
};
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ moveit-ros-planning moveit-ros-visualization rosconsole ogre1_9 libyamlcpp srdfdom qt5.qtbase rviz moveit-core urdf roscpp ];
|
2019-03-21 00:14:59 -04:00
|
|
|
checkInputs = [ moveit-resources rosunit ];
|
|
|
|
propagatedBuildInputs = [ moveit-ros-planning moveit-ros-visualization rosconsole libyamlcpp srdfdom rviz moveit-core urdf roscpp xacro ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Generates a configuration package that makes it easy to use MoveIt!'';
|
|
|
|
#license = lib.licenses.BSD;
|
|
|
|
};
|
|
|
|
}
|