1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/iron/moveit-plugins/default.nix

26 lines
877 B
Nix

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