nix-ros-overlay/distros/rolling/moveit-plugins/default.nix

25 lines
795 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, moveit-simple-controller-manager }:
buildRosPackage {
pname = "ros-rolling-moveit-plugins";
version = "2.13.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_plugins/2.13.2-1.tar.gz";
name = "2.13.2-1.tar.gz";
sha256 = "0146e6baaffa5d0ffdb79f077874ced427c6690d871ff22aa1b29f3efdcc4b1c";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ moveit-simple-controller-manager ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Metapackage for MoveIt plugins.";
license = with lib.licenses; [ bsd3 ];
};
}