mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
1.1 KiB
Nix
25 lines
1.1 KiB
Nix
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-clang-format, ament-cmake, ament-cmake-gtest, ament-cmake-lint-cmake, ament-cmake-xmllint, ament-index-cpp, ament-lint-auto, moveit-ros-visualization, moveit-setup-framework, pluginlib, rclcpp }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-moveit-setup-app-plugins";
|
|
version = "2.5.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/moveit/moveit2-release/archive/release/humble/moveit_setup_app_plugins/2.5.3-1.tar.gz";
|
|
name = "2.5.3-1.tar.gz";
|
|
sha256 = "ee391b0aa2d4d2d008ea80ae90debb09f8dba9ee576c76758f064865ff691a1a";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-clang-format ament-cmake-gtest ament-cmake-lint-cmake ament-cmake-xmllint ament-lint-auto ];
|
|
propagatedBuildInputs = [ ament-index-cpp moveit-ros-visualization moveit-setup-framework pluginlib rclcpp ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''Various specialty plugins for MoveIt Setup Assistant'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|