1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +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.0-r1";
src = fetchurl {
url = "https://github.com/HebiRobotics/hebi_cpp_api_ros-release/archive/release/kinetic/hebi_cpp_api/3.1.0-1.tar.gz";
name = "3.1.0-1.tar.gz";
sha256 = "8965b3f6f4abbc8a97a4fd76b12a80c7fb9d75d6adece10545db7def89a090f8";
};
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)" ];
};
}