mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 18:24:50 +03:00
25 lines
1.2 KiB
Nix
25 lines
1.2 KiB
Nix
|
|
# Copyright 2023 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-foxy-moveit-resources";
|
|
version = "2.0.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/moveit/moveit_resources-release/archive/release/foxy/moveit_resources/2.0.3-1.tar.gz";
|
|
name = "2.0.3-1.tar.gz";
|
|
sha256 = "8288d951e67cad097cbf517360cf4cced7d70192ad3f0d61790d11454757a368";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|