nix-ros-overlay/distros/foxy/moveit-simple-controller-manager/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

26 lines
1,023 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, control-msgs, moveit-common, moveit-core, pluginlib, rclcpp, rclcpp-action }:
buildRosPackage {
pname = "ros-foxy-moveit-simple-controller-manager";
version = "2.2.3-r1";
src = fetchurl {
url = "https://github.com/moveit/moveit2-release/archive/release/foxy/moveit_simple_controller_manager/2.2.3-1.tar.gz";
name = "2.2.3-1.tar.gz";
sha256 = "ec3eadf03ab111a3e9c45b3916c5a5d04867f8525f86362b4eef3a638b372b2f";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake moveit-common ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ control-msgs moveit-core pluginlib rclcpp rclcpp-action ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''A generic, simple controller manager plugin for MoveIt.'';
license = with lib.licenses; [ bsdOriginal ];
};
}