1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00

regenerate all distros, Fri Jun 5 12:54:26 2020

This commit is contained in:
Superflore 2020-06-05 12:54:26 +00:00 committed by Ben Wolsieffer
parent 9cb66d5471
commit 1aa4fdb475
317 changed files with 4380 additions and 768 deletions

View file

@ -0,0 +1,24 @@
# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, cmake-modules, eigen }:
buildRosPackage {
pname = "ros-noetic-hebi-cpp-api";
version = "3.2.0-r1";
src = fetchurl {
url = "https://github.com/HebiRobotics/hebi_cpp_api_ros-release/archive/release/noetic/hebi_cpp_api/3.2.0-1.tar.gz";
name = "3.2.0-1.tar.gz";
sha256 = "2979c3467c126931c36aa7a0a662ccddc15447159eed6e568a4cbf446e2f1d55";
};
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)" ];
};
}