1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-24 07:49:53 +03:00
nix-ros-overlay/distros/jazzy/kinematics-interface/default.nix

26 lines
802 B
Nix
Raw Normal View History

# Copyright 2024 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.2.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/kinematics_interface-release/archive/release/jazzy/kinematics_interface/1.2.0-1.tar.gz";
name = "1.2.0-1.tar.gz";
sha256 = "6f155d3da13572aad5040e263d4a763df73a7e1517efb03b0b50b06b794bbb92";
};
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 ];
};
}