2019-12-09 05:16:46 +00:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-12-09 05:16:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, cob-script-server, geometry-msgs, moveit-commander, rospy, tf }:
|
2019-12-09 05:16:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-cob-moveit-interface";
|
|
|
|
version = "0.7.3-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ipa320/cob_manipulation-release/archive/release/melodic/cob_moveit_interface/0.7.3-1.tar.gz";
|
|
|
|
name = "0.7.3-1.tar.gz";
|
|
|
|
sha256 = "4093eba664c8adf0307ccb6d2f0412320cb819913136a4edf7f44312130c9c99";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ cob-script-server geometry-msgs moveit-commander rospy tf ];
|
2019-12-09 05:16:46 +00:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''cob_moveit_interface'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|