mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
722 B
Nix
23 lines
722 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, rosbridge-server, web-video-server }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-op3-web-setting-tool";
|
||
|
version = "0.2.2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ROBOTIS-GIT-release/robotis_op3_tools-release/archive/release/kinetic/op3_web_setting_tool/0.2.2-0.tar.gz;
|
||
|
sha256 = "6a13254f743362ee8c4b0a6620b8bd3e16c78c358fdab2f13ebf835a75a60161";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ rosbridge-server web-video-server ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The op3_web_setting_tool package'';
|
||
|
#license = lib.licenses.Apache 2.0;
|
||
|
};
|
||
|
}
|