mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 17:54:49 +03:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, eigen, eigen3-cmake-module, kdl-parser, kinematics-interface, pluginlib, ros2-control-test-assets, tf2-eigen-kdl }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-kinematics-interface-kdl";
|
|
version = "2.0.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/kinematics_interface-release/archive/release/rolling/kinematics_interface_kdl/2.0.0-1.tar.gz";
|
|
name = "2.0.0-1.tar.gz";
|
|
sha256 = "64524bf432c632b0c8b74936b6b4ed34f3232fca3208ab3fc96685581816c6b3";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake eigen3-cmake-module ];
|
|
checkInputs = [ ament-cmake-gmock ros2-control-test-assets ];
|
|
propagatedBuildInputs = [ eigen kdl-parser kinematics-interface pluginlib tf2-eigen-kdl ];
|
|
nativeBuildInputs = [ ament-cmake eigen3-cmake-module ];
|
|
|
|
meta = {
|
|
description = "KDL implementation of ros2_control kinematics interface";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|