mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
26 lines
822 B
Nix
26 lines
822 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, xacro }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-moveit-resources-prbt-support";
|
|
version = "2.13.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_resources_prbt_support/2.13.2-1.tar.gz";
|
|
name = "2.13.2-1.tar.gz";
|
|
sha256 = "0f79e4c8f256e24932f5af59fcd596a61df3cab81181662e09d86c6db23952e1";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
propagatedBuildInputs = [ xacro ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Mechanical, kinematic and visual description
|
|
of the Pilz light weight arm PRBT.";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|