2021-04-19 01:10:27 +00:00
|
|
|
|
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-06-11 22:09:04 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, moveit-simple-controller-manager }:
|
2021-04-19 01:10:27 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-moveit-plugins";
|
2021-07-16 13:05:44 +00:00
|
|
|
version = "2.2.1-r1";
|
2021-04-19 01:10:27 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-16 13:05:44 +00:00
|
|
|
url = "https://github.com/moveit/moveit2-release/archive/release/foxy/moveit_plugins/2.2.1-1.tar.gz";
|
|
|
|
name = "2.2.1-1.tar.gz";
|
|
|
|
sha256 = "c950632eced55edafc03244652f0b247a23500857db457f052d81d3860f3aa96";
|
2021-04-19 01:10:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2021-06-11 22:09:04 +00:00
|
|
|
propagatedBuildInputs = [ moveit-simple-controller-manager ];
|
2021-04-19 01:10:27 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Metapackage for MoveIt plugins.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|