nix-ros-overlay/distros/humble/hebi-cpp-api/default.nix

25 lines
732 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, eigen }:
buildRosPackage {
pname = "ros-humble-hebi-cpp-api";
version = "3.10.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/hebi_cpp_api-release/archive/release/humble/hebi_cpp_api/3.10.0-1.tar.gz";
name = "3.10.0-1.tar.gz";
sha256 = "a46abd28af27f85d466f74b7a1e173d04b9a8e7a713fdac241629a59f05f3734";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake eigen ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "A ROS 2 package providing access to the HEBI C++ API.";
license = with lib.licenses; [ asl20 ];
};
}