1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/kortex-driver/default.nix

26 lines
853 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, hardware-interface, kortex-api, pluginlib, rclcpp }:
buildRosPackage {
pname = "ros-rolling-kortex-driver";
version = "0.2.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_kortex-release/archive/release/rolling/kortex_driver/0.2.2-1.tar.gz";
name = "0.2.2-1.tar.gz";
sha256 = "0cfaedfa251dcb67fac8a894971f3780ff921d0331d6aba9a7ef28467c39c347";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ hardware-interface kortex-api pluginlib rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''ROS2 driver package for the Kinova Robot Hardware.'';
license = with lib.licenses; [ bsdOriginal ];
};
}