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

26 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, joint-state-publisher, moveit-resources-fanuc-description, moveit-resources-fanuc-moveit-config, moveit-resources-panda-description, moveit-resources-panda-moveit-config, moveit-resources-pr2-description, robot-state-publisher }:
buildRosPackage {
pname = "ros-iron-moveit-resources";
version = "2.1.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit_resources-release/archive/release/iron/moveit_resources/2.1.1-1.tar.gz";
name = "2.1.1-1.tar.gz";
sha256 = "866784b35cc7337e3355a9fce810e016adbf019101dc11045c2bf5680c7d12b7";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ joint-state-publisher moveit-resources-fanuc-description moveit-resources-fanuc-moveit-config moveit-resources-panda-description moveit-resources-panda-moveit-config moveit-resources-pr2-description robot-state-publisher ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Resources used for MoveIt testing";
license = with lib.licenses; [ bsdOriginal ];
};
}