nix-ros-overlay/distros/jazzy/kinematics-interface/default.nix

25 lines
802 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, eigen, rclcpp-lifecycle }:
buildRosPackage {
pname = "ros-jazzy-kinematics-interface";
version = "1.3.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/kinematics_interface-release/archive/release/jazzy/kinematics_interface/1.3.0-1.tar.gz";
name = "1.3.0-1.tar.gz";
sha256 = "6dea9ec3c1537ce3c9ab2dae42a467a5dc4ce527e46ce21e06edbe55179c13db";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ eigen rclcpp-lifecycle ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Kinematics interface for ROS 2 control";
license = with lib.licenses; [ asl20 ];
};
}