1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-17 15:40:17 +03:00
nix-ros-overlay/distros/foxy/moveit-resources-fanuc-description/default.nix

25 lines
752 B
Nix
Raw Permalink Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake }:
buildRosPackage {
pname = "ros-foxy-moveit-resources-fanuc-description";
version = "2.0.3-r1";
src = fetchurl {
url = "https://github.com/moveit/moveit_resources-release/archive/release/foxy/moveit_resources_fanuc_description/2.0.3-1.tar.gz";
name = "2.0.3-1.tar.gz";
sha256 = "3f2a59160d0c2ff3ec9aa8d4bf8b517b531824c023130e2e64f1102564fc24d6";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Fanuc Resources used for MoveIt testing'';
license = with lib.licenses; [ bsdOriginal ];
};
}