1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/denso-robot-core/default.nix

24 lines
973 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, actionlib-msgs, catkin, message-generation, message-runtime, bcap-core, actionlib, std-msgs, bcap-service, roscpp }:
buildRosPackage {
pname = "ros-kinetic-denso-robot-core";
version = "3.0.2-r1";
src = fetchurl {
url = https://github.com/DENSORobot/denso_robot_ros-release/archive/release/kinetic/denso_robot_core/3.0.2-1.tar.gz;
sha256 = "512e9f991a1ba21d338bd4fead0f5040dca3eccee3099d6468065baabfada67f";
};
buildInputs = [ message-generation actionlib bcap-core actionlib-msgs std-msgs bcap-service roscpp ];
propagatedBuildInputs = [ actionlib message-runtime bcap-core actionlib-msgs std-msgs bcap-service roscpp ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The denso robot core package includes a node for controlling DENSO robot controllers.'';
#license = lib.licenses.MIT;
};
}