1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 14:40:58 +03:00
nix-ros-overlay/kinetic/hebi-cpp-api/default.nix

25 lines
810 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, cmake-modules, eigen }:
buildRosPackage {
pname = "ros-kinetic-hebi-cpp-api";
version = "3.1.1-r1";
src = fetchurl {
url = "https://github.com/HebiRobotics/hebi_cpp_api_ros-release/archive/release/kinetic/hebi_cpp_api/3.1.1-1.tar.gz";
name = "3.1.1-1.tar.gz";
sha256 = "9ba3bd2c51c6196e84a27e9fb19fac6da7d04877f4d9d18ac9d1dff9213ae06e";
};
buildType = "catkin";
buildInputs = [ cmake-modules eigen ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''A ROS package providing access to the HEBI C++ API.'';
license = with lib.licenses; [ "HEBI C++ Software License (https://www.hebirobotics.com/softwarelicense)" ];
};
}