1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/thormang3-action-script-player/default.nix

25 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, libyamlcpp, catkin, robotis-controller-msgs, thormang3-action-module-msgs, roslib, std-msgs, roscpp }:
buildRosPackage {
pname = "ros-kinetic-thormang3-action-script-player";
version = "0.3.0";
src = fetchurl {
url = https://github.com/ROBOTIS-GIT-release/ROBOTIS-THORMANG-OPC-release/archive/release/kinetic/thormang3_action_script_player/0.3.0-0.tar.gz;
sha256 = "8d1742395fe6ebbe154b03f8b5da56774772996177cc5f089df2eda06dee945c";
};
buildInputs = [ libyamlcpp thormang3-action-module-msgs roslib boost std-msgs robotis-controller-msgs roscpp ];
propagatedBuildInputs = [ libyamlcpp thormang3-action-module-msgs roslib boost std-msgs robotis-controller-msgs roscpp ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package provides a action script playing for thormang3.
It can be used with thormang3_action_module and ros_mpg321_player.'';
#license = lib.licenses.Apache 2.0;
};
}