mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-14 19:48:39 +03:00
24 lines
732 B
Nix
24 lines
732 B
Nix
|
|
# 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.12.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/hebi_cpp_api-release/archive/release/humble/hebi_cpp_api/3.12.3-1.tar.gz";
|
|
name = "3.12.3-1.tar.gz";
|
|
sha256 = "635b0c0f451139a441d703766c48ac208fc54d666be62b344500042ef085742a";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|