mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-index-python, geometry-msgs, moveit-core, moveit-ros-planning, moveit-ros-planning-interface, octomap-msgs, pybind11-vendor, pythonPackages, rclcpp, rclpy }:
|
|
buildRosPackage {
|
|
pname = "ros-iron-moveit-py";
|
|
version = "2.8.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/iron/moveit_py/2.8.0-1.tar.gz";
|
|
name = "2.8.0-1.tar.gz";
|
|
sha256 = "a800e40d43becaae04aaf18beeccb559036a90a4f5d10af1298122dfbe5803f0";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake pybind11-vendor ];
|
|
checkInputs = [ ament-cmake-pytest pythonPackages.pytest ];
|
|
propagatedBuildInputs = [ ament-index-python geometry-msgs moveit-core moveit-ros-planning moveit-ros-planning-interface octomap-msgs rclcpp rclpy ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Python binding for MoveIt 2";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|