mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
28 lines
1,019 B
Nix
28 lines
1,019 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, trac-ik-kinematics-plugin, trac-ik-lib }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-trac-ik";
|
|
version = "2.0.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/trac_ik-release/archive/release/rolling/trac_ik/2.0.1-1.tar.gz";
|
|
name = "2.0.1-1.tar.gz";
|
|
sha256 = "662d15c958553cedd23dadcf7f5ee17cbc7aac5584a09ce38b36b78c66e1227f";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
propagatedBuildInputs = [ trac-ik-kinematics-plugin trac-ik-lib ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "The ROS packages in this repository were created to provide an improved
|
|
alternative Inverse Kinematics solver to the popular inverse Jacobian
|
|
methods in KDL. TRAC-IK handles joint-limited chains better than KDL
|
|
without increasing solve time.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|